-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "@snlab/florence-datacontainer",
"version": "0.2.2",
"main": "dist/florence-datacontainer.cjs.js",
"module": "dist/florence-datacontainer.esm.js",
"browser": "dist/florence-datacontainer.umd.js",
"repository": "https://gitlab.com/spatialnetworkslab/florence-datacontainer.git",
"license": "MIT",
"dependencies": {
"@snlab/ducebox": "0.0.5",
"classify-series": "^0.3.2",
"d3-scale": "^3.2.3"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"babel-jest": "^26.6.3",
"eslint": "^7.14.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"lodash": "^4.17.20",
"rollup": "^2.34.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"test:ci": "jest --ci --coverage --reporters=default --reporters=jest-junit",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"jest": {
"testPathIgnorePatterns": [
"/__data__/"
]
}
}