-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
44 lines (44 loc) · 1.14 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": "@mapd/crossfilter",
"version": "1.2.1",
"license": "Apache-2.0",
"description": "Fast multidimensional filtering for coordinated views.",
"main": "./index.js",
"repository": {
"type": "git",
"url": "https://github.com/mapd/mapd-crossfilter.git"
},
"scripts": {
"build": "webpack",
"test": "nyc npm run test:unit --",
"test:unit": "mocha --require test/config.js --timeout 4000 test/",
"format": "prettier --write '{src,test}/**/*.js'",
"format:check": "prettier --debug-check --list-different '{src,test}/**/*.js'"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.2",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"eslint": "^3.19.0",
"mocha": "^3.2.0",
"moment": "^2.18.1",
"nyc": "^10.3.0",
"prettier": "1.10.2",
"webpack": "^3.10.0"
},
"nyc": {
"check-coverage": false,
"lines": 93.3,
"statements": 93.15,
"functions": 96.2,
"branches": 84.23,
"exclude": [
"**/*.spec.js"
]
}
}