-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 973 Bytes
/
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
{
"name": "programjs",
"version": "0.1.2",
"description": "A comprehensive and lightweight npm package of common data structures and algorithms to accelerate development.",
"main": "./index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/eloreprojects/programjs.git"
},
"scripts": {
"lint": "eslint src/** --fix && eslint test/** --fix",
"test": "npm run lint && mocha --reporter spec"
},
"author": "Arun Kirubarajan & Neeraj Aggarwal",
"license": "MIT",
"bugs": {
"url": "https://github.com/eloreprojects/programjs/issues"
},
"homepage": "https://github.com/eloreprojects/programjs#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0"
},
"dependencies": {
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1"
}
}