forked from manrajgrover/algorithms-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.27 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
{
"name": "algorithms-js",
"version": "0.0.13",
"description": "Algorithms Library in JavaScript",
"main": "src/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"test": "mocha --recursive",
"report": "nyc mocha --recursive",
"lint": "eslint ./src ./test",
"all": "npm run test && npm run lint",
"docs": "doxdox 'src/**/*.js' --layout bootstrap --output docs/index.html && doxdox 'src/**/*.js' --layout markdown --output docs/README.md",
"dev": "webpack",
"prod": "webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manrajgrover/algorithms-js.git"
},
"author": "Manraj Singh <manrajsinghgrover@gmail.com> (http://manrajsingh.in)",
"license": "MIT",
"bugs": {
"url": "https://github.com/manrajgrover/algorithms-js/issues"
},
"homepage": "https://github.com/manrajgrover/algorithms-js#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"doxdox": "^2.0.3",
"eslint": "^5.2.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"webpack": "^4.16.2"
}
}