-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 886 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
{
"name": "structured-js",
"private": false,
"version": "1.0.0",
"license": "MIT",
"description": "Common data structures implemented in Javascript",
"author": "Dylan Robinson <dylan@dylancodes.net> (http://dylancodes.net)",
"repository": {
"type": "git",
"url": "http://dylancodes.net"
},
"dependencies": {
"babel-polyfill": "^6.7.2"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.0.20",
"babel-register": "^6.11.5",
"babel-preset-es2015": "^6.9.0",
"benchmark": "^2.1.0",
"chai": "*",
"istanbul": "^1.0.0-alpha",
"mocha": "*"
},
"scripts": {
"test": "mocha",
"cover": "node ./node_modules/istanbul/lib/cli cover node_modules/mocha/bin/_mocha -- --timeout 10000",
"makeES5": "babel src --presets babel-preset-es2015 --out-dir dist/es5"
},
"directories": {
"test": "test"
}
}