-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 890 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": "javascript-i",
"version": "1.0.0",
"description": "JavaScript I",
"main": "index.js",
"scripts": {
"test": "eslint tests/*.js && eslint src/*.js && jest --verbose",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SunJieMing/js-minicamp-homework-1.git"
},
"author": "Ben Nelson",
"license": "ISC",
"bugs": {
"url": "https://github.com/SunJieMing/js-minicamp-homework-1/issues"
},
"homepage": "https://github.com/SunJieMing/js-minicamp-homework-1#readme",
"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"
}
}