This repository has been archived by the owner on Jul 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.61 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "table-model",
"version": "1.6.0",
"description": "A library to manage and automate data and calculations",
"keywords": [
"table",
"model",
"data",
"calculation",
"formula",
"aggrid"
],
"repository": "https://github.com/target/table-model",
"author": "Edward Nicholes Jr.",
"license": "MIT",
"main": "dist/table-model.js",
"scripts": {
"build": "webpack",
"clean": "rm -rf ./dist",
"test": "mocha-webpack --require jsdom-global/register --webpack-config webpack.config.js src/index.spec.js",
"test:watch": "mocha-webpack --watch --require jsdom-global/register --webpack-config webpack.config.js src/index.spec.js"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"ag-grid": "^17.1.1",
"ag-grid-react": "^24.1.1",
"babel-loader": "^8.2.2",
"babel-preset-react": "^6.24.1",
"eslint": "^7.15.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-config-xo-space": "^0.25.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-react": "^7.21.5",
"html-webpack-plugin": "^4.5.0",
"js-logger": "^1.6.1",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"mocha": "^7.2.0",
"mocha-webpack": "^2.0.0-beta.0",
"node-sass": "^7.0.0",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-dom-factories": "^1.0.2",
"sass-loader": "^10.1.0",
"should": "^13.2.3",
"sinon": "^9.2.1",
"source-map-support": "^0.5.19",
"style-loader": "^2.0.0",
"webpack": "^4.44.2",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
}
}