forked from petermoresi/pivot-crossfilter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.03 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": "data-pivot",
"version": "1.0.2",
"description": "A tool for re-arranging data.",
"main": "./bin/pivot.js",
"repository": {
"type": "git",
"url": "[email protected]:winterstein/data-pivot.git"
},
"keywords": [
"pivot",
"data tool",
"crossfilter"
],
"author": "Daniel Winterstein",
"license": "MIT",
"bugs": {
"url": "https://github.com/winterstein/data-pivot/issues"
},
"homepage": "https://github.com/winterstein/data-pivot#readme",
"babel": {
"presets": [
"es2015"
]
},
"dependencies": {
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babili": "^0.0.12",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"sjtest": "^0.4.4"
},
"scripts": {
"build": "babel src --out-dir bin --source-maps",
"watch": "babel src --out-dir bin --source-maps --watch",
"prepublish": "npm run build"
}
}