-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 871 Bytes
/
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
{
"name": "es6-data-structures",
"version": "0.0.0",
"author": "Alexander Pilafian <[email protected]>",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"types": "./esm/index.d.ts",
"scripts": {
"build": "babel esm --out-dir cjs",
"prepublish": "npm run build",
"install": "npm run build",
"test": "ava --tap test.js"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"ava": "^0.21.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.5.1",
"babel-register": "^6.24.1",
"tap-nyan": "^1.1.0",
"random-seed": "^0.3.0",
"deterministic-uniqid": "latest"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
}
}