-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "js-stl-polyfill",
"version": "0.6.15",
"description": "data structure",
"main": "./lib/index.js",
"browser": "./es5/index.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --progress --color",
"build:dev": "cross-env NODE_ENV=development webpack --progress --color",
"build:lib": "babel src --out-dir lib",
"build:es5": "babel --presets es2015 --plugins transform-runtime src --out-dir es5",
"test": "mocha ./test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LukeLin/js-stl.git"
},
"keywords": [
"data-structure",
"algorithms"
],
"author": "LukeLin",
"license": "MIT",
"bugs": {
"url": "https://github.com/LukeLin/js-stl/issues"
},
"babel": {
"plugins": [
"transform-es2015-modules-commonjs",
"transform-class-properties"
]
},
"engines": {
"node": ">=7.0.0"
},
"homepage": "https://github.com/LukeLin/js-stl#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"babel-runtime": "^6.23.0",
"cross-env": "^4.0.0",
"del": "^2.2.2",
"mocha": "^3.2.0",
"webpack": "^2.3.3"
},
"dependencies": {
"xxhashjs": "^0.2.1"
}
}