forked from nfcampos/dodos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.45 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "dodos",
"version": "2.4.0",
"description": "Pandas-inspired iterator-based data wrangling library for js",
"main": "dist/dodos.js",
"scripts": {
"build": "webpack",
"test": "ava",
"test:watch": "ava --watch",
"test:cov": "nyc ava",
"prepush": "npm test",
"prepublish": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nfcampos/dodos.git"
},
"author": "Nuno Campos <[email protected]> (https://github.com/nfcampos)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nfcampos/dodos/issues"
},
"homepage": "https://github.com/nfcampos/dodos",
"devDependencies": {
"ava": "~0.13.0",
"babel-cli": "~6.6.5",
"babel-core": "~6.7.2",
"babel-eslint": "~6.0.0",
"babel-loader": "~6.2.4",
"babel-polyfill": "~6.7.2",
"babel-preset-es2015": "~6.6.0",
"babel-require": "~1.0.1",
"benchmark": "~2.1.0",
"d3-dsv": "~0.3.1",
"eslint": "~2.5.1",
"husky": "~0.11.4",
"npm-check": "~4.1.4",
"nyc": "~6.1.1",
"table": "~3.7.8",
"webpack": "~1.12.14"
},
"dependencies": {
"invariant": "~2.2.1",
"lodash": "~4.6.1",
"transducers.js": "~0.3.2"
},
"babel": {
"presets": [
"es2015"
],
"env": {
"development": {
"sourceMaps": "inline"
}
}
},
"ava": {
"babel": "inherit",
"require": [
"babel-register",
"babel-polyfill"
]
}
}