-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
68 lines (68 loc) · 2.13 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "node-jsgraph",
"description": "library that can be used to render scientific data in the form of graphs and charts",
"version": "2.4.5",
"scripts": {
"build": "grunt",
"buildExamples": "grunt examples",
"doc": "git subtree push --prefix doc origin gh-pages",
"eslint": "eslint src gruntfile.js --cache",
"eslint-fix": "npm run eslint -- --fix",
"release:patch": "grunt patch",
"test": "npm run test-only && npm run eslint -- --quiet",
"test-coverage": "jest --coverage",
"test-only": "jest"
},
"main": "dist/jsgraph.js",
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/plugin-transform-exponentiation-operator": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-stage-2": "^7.8.3",
"babel-loader": "^8.0.5",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-inline-replace-variables": "^1.3.1",
"babel-preset-minify": "^0.5.1",
"dir-to-json": "0.0.3",
"directory-to-json": "^1.3.0",
"directory-tree": "^2.2.1",
"eslint": "^5.12.1",
"eslint-config-cheminfo": "^1.20.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-no-only-tests": "^2.1.0",
"grunt": "^1.3.0",
"grunt-babel": "^8.0.0",
"grunt-bump": "^0.8.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^5.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-exec": "^3.0.0",
"grunt-jsdoc": "^2.4.1",
"grunt-rollup": "^11.5.0",
"grunt-sloc": "^0.7.1",
"grunt-webpack": "^4.0.2",
"ink-docstrap": "^1.3.2",
"jest": "^24.0.0-alpha.13",
"js-beautify": "^1.8.9",
"ncp": "^2.0.0",
"rollup": "^2.33.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"webpack": "^5.0.0"
},
"jest": {
"testRegex": "/__tests__/.*$"
},
"repository": "NPellet/jsGraph",
"license": "MIT",
"dependencies": {}
}