-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.01 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
{
"name": "ls-multi-level-feedback-queue",
"version": "1.0.0",
"description": "LambadSchool's Multi-level feedback queue exercise",
"main": "index.js",
"scripts": {
"start": "node src/main.js",
"test": "jest --verbose",
"lint": "eslint",
"test:watch": "npm test --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LambdaSchool/Multi-Level-Feedback-Queue.git"
},
"author": "Sean Chen",
"license": "ISC",
"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",
"sinon": "^4.0.1"
},
"dependencies": {
"babel-preset-es2015": "^6.24.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0"
}
}