-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "toy-robot",
"version": "1.0.0",
"description": "A Vue.js project",
"author": "David Picarra <daviddcp@gmail.com>",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "babel-node src/index.js",
"unit": "jest --coverage",
"test": "npm run lint && jest --coverage",
"test:dev": "jest --watchAll",
"lint": "eslint --ext .js src/"
},
"jest": {
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"coverageDirectory": "coverage",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidpicarra/toy-robot-cli.git"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"chalk": "^2.4.1",
"clear": "^0.1.0",
"figlet": "^1.2.0",
"vorpal": "^1.12.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"codecov": "^3.0.4",
"eslint": "^5.3.0",
"jest": "^23.5.0"
}
}