forked from bloominstituteoftechnology/Data-Structures-II
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
{
"name": "ls-data-structures-ii",
"version": "1.0.0",
"description": "LambdaSchool's Data Structures II",
"main": "index.js",
"scripts": {
"test": "eslint tests/*.js && eslint src/*.js && jest --verbose",
"lint": "eslint",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SunJieMing/LS-Data-Structures-II.git"
},
"author": "Ben Nelson",
"license": "ISC",
"bugs": {
"url": "https://github.com/SunJieMing/LS-Data-Structures-I/issues"
},
"homepage": "https://github.com/SunJieMing/LS-Data-Structures-I/#readme",
"devDependencies": {
"babel-jest": "^19.0.0",
"eslint": "^3.17.1",
"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",
"jest": "^19.0.2",
"regenerator-runtime": "^0.10.3"
},
"dependencies": {
"babel-preset-es2015": "^6.24.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0"
}
}