-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 809 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
{
"name": "javascript-ii",
"version": "1.0.0",
"description": "JavaScript II",
"main": "index.js",
"scripts": {
"test": "eslint tests/*.test.js && eslint src/*.js && jest --verbose",
"test:watch": "npm test -- --watch"
},
"author": "Ben Nelson",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/LambdaSchool/javascript-ii.git"
},
"devDependencies": {
"babel-jest": "^19.0.0",
"eslint": "^3.17.1",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"jest": "^19.0.2",
"regenerator-runtime": "^0.10.3"
},
"dependencies": {
"babel-preset-es2015": "^6.24.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-jsx-a11y": "^3.0.2 || ^4.0.0",
"eslint-plugin-react": "6.9.0"
}
}