-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.21 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
{
"name": "algo-ds-js",
"version": "1.0.0",
"description": "Algorithms and Data Structures in Javascript (Inspired by https://github.com/sherxon/AlgoDS)",
"main": "index.js",
"dependencies": {
"eslint": "^3.19.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.3"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.1",
"babel-jest": "^19.0.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"eslint-plugin-flowtype": "^2.30.4",
"flow-bin": "^0.43.1",
"jest": "^19.0.2"
},
"scripts": {
"test": "flow && eslint src/** && ./node_modules/.bin/jest"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/facebook-developer-circle-malang/algo-ds-js.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/facebook-developer-circle-malang/algo-ds-js/issues"
},
"homepage": "https://github.com/facebook-developer-circle-malang/algo-ds-js#readme"
}