-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.12 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.12 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "EventDisplay2",
"version": "1.0.0",
"author": "Dmitry Arkhipkin <arkhipkin@gmail.com>",
"description": "Event Display 2.0, features full GDML support",
"homepage": "",
"engines": {
"node": ">=6"
},
"main": "main.js",
"scripts": {
"dev": "webpack --config ./webpack/webpack.config.prod.js",
"build": "webpack -p --config ./webpack/webpack.config.prod.js"
},
"keywords": [],
"license": "MIT",
"eslintConfig": {
"root": true,
"extends": "eslint:recommended",
"env": {
"browser": true,
"jquery": true,
"node": true,
"es6": true,
"amd": true,
"mocha": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"no-console": [
0
]
}
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "7.1.1",
"babel-polyfill": "latest",
"babel-preset-env": "latest",
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^2.1.1",
"css-mqpacker": "^6.0.1",
"cssnano": "^4.1.10",
"eslint": "^4.4.1",
"eslint-loader": "latest",
"expr-eval": "latest",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"grunt": "latest",
"js-logger": "latest",
"mathjs": "^5.10.0",
"pako": "^1.0.6",
"postcss": "^6.0.9",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.6",
"postcss-nested": "^2.1.0",
"postcss-remove-root": "^0.0.2",
"postcss-reporter": "^5.0.0",
"style-loader": "^0.18.2",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^17.0.0",
"three": "^0.84.0",
"url-loader": "^1.1.2",
"webpack": "^3.10.0",
"webpack-bundle-analyzer": "latest",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"@tweenjs/tween.js": "latest",
"assert": "^1.4.1",
"html-webpack-plugin": "^3.2.0",
"jquery": "^2.2.4",
"moment": "^2.22.2",
"moment-timezone": "^0.5.21",
"package.json": "^2.0.1"
}
}