-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
65 lines (65 loc) · 2.2 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
{
"name": "@careteen/dsa",
"version": "0.1.3",
"description": "data-structure_algorithm",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.min.js",
"scripts": {
"clean": "rimraf dist/",
"lint": "eslint -c .eslintrc.js src",
"start": "npm run clean && npm run lint && cross-env NODE_ENV=development rollup -w -c build/rollup.dev.config.js",
"build": "npm run clean && npm run lint && cross-env NODE_ENV=production rollup -c build/rollup.prod.config.js",
"test": "rimraf mochawesome-report/ && cross-env NODE_ENV=test mocha --compilers js:babel-core/register ./test --recursive --reporter mochawesome",
"example": "npm run build && node example/app.js",
"doc": "gitbook init && rimraf _book/ && gitbook build && http-server -p 8880",
"rename": "node rename.js",
"release": "npm test && npm run build && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish --access=public"
},
"keywords": [
"rollup",
"data-structure_algorithm"
],
"author": "careteenL <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/careteenL/data-structure_algorithm.git"
},
"bugs": {
"url": "https://github.com/careteenL/data-structure_algorithm/issues"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"eslint": "^5.7.0",
"express": "^4.16.4",
"mocha": "^5.2.0",
"mochawesome": "^3.1.1",
"opn": "^5.4.0",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.2",
"rollup": "^0.66.6",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-filesize": "^5.0.1",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-serve": "^0.6.0",
"rollup-plugin-uglify": "^6.0.0",
"serve": "^10.0.2",
"shelljs": "^0.8.2",
"uglify-es": "^3.3.9"
},
"dependencies": {
"babel-runtime": "^6.26.0"
},
"pre-commit": [
"lint"
]
}