-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 874 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 874 Bytes
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
{
"name": "force-radar-scatterplot",
"version": "1.0.0",
"description": "",
"main": "src/ForceRadarScatterplot.js",
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack --mode=development --watch"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.1.6",
"babel-loader": "^8.0.4",
"eslint-config-qvvdata": "github:qvvdata/eslint-config-qvvdata",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2"
},
"eslintConfig": {
"extends": "eslint-config-qvvdata",
"globals": {
"document": true,
"webpack": true,
"window": true,
"screen": true
},
"rules": {
"no-param-reassign": 0,
"no-lonely-if": 0,
"prefer-template": 0,
"no-return-assign": [
0
],
"no-continue": [
0
]
}
},
"dependencies": {}
}