-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.85 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.85 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "js-data-structure",
"description": "JavaScript Data Structure",
"version": "0.0.0-semantically-released",
"main": "dist/index.js",
"scripts": {
"build": "npm-run-all --parallel build:*",
"build:main": "babel --copy-files --out-dir dist --ignore *.test.js src",
"build:umd": "webpack --output-filename index.umd.js",
"build:umd.min": "webpack --output-filename index.umd.min.js -p",
"check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"commit": "git-cz",
"cover": "nyc --reporter=lcov --reporter=text npm t",
"lint": "eslint --ignore-path .eslintignore -c .eslintrc .",
"prebuild": "rimraf dist",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"start": "webpack-dev-server --content-base src --inline --hot",
"test": "mocha --compilers js:babel-register -R spec",
"validate": "npm ls",
"watch:test": "npm t -- -w"
},
"repository": {
"type": "git",
"url": "https://github.com/almandsky/js-data-structure.git"
},
"keywords": [
"JavaScript",
"js",
"data structure",
"algorithm",
"queue",
"tree",
"graph",
"bfs",
"dfs",
"sorting",
"search",
"ES6"
],
"author": "almandsky",
"license": "MIT",
"bugs": {
"url": "https://github.com/almandsky/js-data-structure/issues"
},
"files": [
"dist",
"README.md"
],
"homepage": "https://github.com/almandsky/js-data-structure#readme",
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "^6.16.0",
"babel-loader": "^6.2.7",
"babel-plugin-istanbul": "^2.0.3",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-2": "6.18.0",
"babel-register": "6.18.0",
"codecov.io": "^0.1.6",
"commitizen": "2.8.6",
"css-loader": "^0.25.0",
"cz-conventional-changelog": "1.2.0",
"eslint": "^5.0.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.10.0",
"ghooks": "^1.3.2",
"istanbul": "^0.4.5",
"json-loader": "^0.5.4",
"mocha": "^2.5.3",
"npm-run-all": "^3.1.1",
"nyc": "8.4.0",
"precommit-hook": "^3.0.0",
"rimraf": "2.5.4",
"semantic-release": "^4.3.5",
"webpack": "~1.13.3"
},
"dependencies": {
"chai": "^3.5.0"
},
"babel": {
"presets": [
"es2015",
"state-2"
]
},
"pre-commit": [
"lint",
"cover",
"check-coverage"
],
"config": {
"ghooks": {
"pre-commit": "npm run lint && npm run cover && npm run check-coverage"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}