-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "@snlab/ducebox",
"version": "0.0.5",
"main": "dist/ducebox.cjs.js",
"module": "dist/ducebox.esm.js",
"browser": "dist/ducebox.umd.js",
"repository": "https://github.com/spatialnetworkslab/ducebox.git",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@dynatrace/zakzak": "^0.6.3",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"arquero": "^0.13.2",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"rollup": "^1.26.2"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"perf": "npm run build && node ./perf/perf.js --",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"jest": {
"verbose": true,
"testPathIgnorePatterns": [
"/__data__/"
]
},
"dependencies": {
"ramda": "^0.27.1"
}
}