-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.46 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
{
"name": "data-structure",
"version": "1.0.0",
"description": "data structure for javascript es6",
"keywords": [
"data structure",
"javascript",
"es6",
"stack",
"queue",
"priority queue",
"linked list",
"doubly linked list",
"circular linked list",
"set",
"map",
"dictionary",
"hash table",
"binary search tree",
"avl tree",
"graph"
],
"main": "lib/data-structure.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "mocha --require babel-polyfill --compilers js:babel-register",
"clean": "rimraf lib",
"lint": "eslint src",
"build": "npm run clean && npm run lint && set NODE_ENV=production && webpack --progress --hide-modules --config webpack.build.js"
},
"author": "jessemao <jessemao@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.2.1",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.23.0",
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"css-loader": "^0.26.1",
"eslint": "^3.16.1",
"eslint-plugin-babel": "^4.0.1",
"eslint-plugin-react": "^6.10.0",
"rimraf": "^2.6.0",
"style-loader": "^0.13.1",
"webpack": "^2.2.1"
}
}