-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.91 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "dodos",
"version": "2.9.0",
"description": "Pandas-inspired iterator-based data wrangling library for js",
"main": "lib/dodo.js",
"scripts": {
"build": "npm run build:lib && npm run build:umd",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack",
"clean": "rimraf lib dist coverage .nyc_output",
"test": "ava",
"test:watch": "ava --watch",
"test:cov": "nyc ava",
"test:covreport": "nyc report --reporter=html && open coverage/index.html",
"coverage": "npm run test:cov && npm run test:covreport",
"prepush": "npm test",
"prepublish": "git pull origin master && npm test && npm run clean && npm run build",
"postpublish": "git push origin master --no-verify"
},
"files": [
"dist",
"lib",
"src"
],
"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.16.0",
"babel-cli": "~6.14.0",
"babel-core": "~6.14.0",
"babel-eslint": "~6.0.3",
"babel-loader": "~6.2.4",
"babel-polyfill": "~6.9.0",
"babel-preset-es2015": "~6.14.0",
"babel-require": "~1.0.1",
"benchmark": "~2.1.0",
"d3-dsv": "~1.0.0",
"eslint": "~3.4.0",
"husky": "~0.11.4",
"npm-check": "~5.2.1",
"nyc": "~6.6.1",
"rimraf": "~2.5.2",
"table": "~3.7.8",
"webpack": "~1.13.0"
},
"dependencies": {
"invariant": "~2.2.1",
"lodash": "~4.15.0",
"transducers.js": "~0.3.2"
},
"babel": {
"presets": [
"es2015"
],
"env": {
"development": {
"sourceMaps": "inline"
}
}
},
"ava": {
"babel": "inherit",
"require": [
"babel-register",
"babel-polyfill"
]
}
}