-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.34 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
{
"name": "crossxfilters",
"version": "0.0.2",
"main": "dist/index",
"module": "dist/index.mjs",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"build": "rollup -c rollup.config.js && rollup -c rollup.config.cjs.js",
"watch": "rollup -c -w rollup.config.js",
"pretest": "rollup -c rollup.config.js",
"test": "mocha 'test/**.{js,mjs}' 'test/*.{js,mjs}'",
"cover": "nyc --reporter=lcov --reporter=text --include='dist/**' npm test",
"prepare": "eslint --ext .js,.mjs src test && npm test"
},
"devDependencies": {
"@std/esm": "^0.11.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babelrc-rollup": "^3.0.0",
"chai": "^4.1.2",
"eslint": "^4.7.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"nyc": "^11.2.1",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.0"
},
"files": [
"src",
"dist"
],
"author": "Naoto Kato <naoto.kato@plaid.co.jp>",
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.26.0",
"crossfilter2": "^1.4.3"
}
}