-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.5 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "sincding",
"version": "1.4.0",
"description": "CLI to download Siding files",
"repository": {
"type": "git",
"url": "https://github.com/open-source-uc/sincding"
},
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"sync": "node src/index.js sync",
"test": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --coverage --testResultsProcessor=jest-junit",
"lint": "eslint ./src ./lib ./index.js",
"deploy": "./scripts/deploy.sh"
},
"author": {
"name": "Nicolas Gebauer",
"mail": "[email protected]",
"url": "http://negebauer.github.io"
},
"dependencies": {
"axios": "^0.16.2",
"cheerio": "^0.22.0",
"cli-table": "^0.3.1",
"iconv-lite": "^0.4.15",
"prompt": "^1.0.0",
"request": "^2.81.0",
"update-notifier": "^2.1.0"
},
"bin": {
"sincding": "src/index.js"
},
"devDependencies": {
"babel-eslint": "^8.0.0",
"coveralls": "^2.13.1",
"eslint": "^4.1.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-prettier": "^2.1.2",
"jest": "^21.0.2",
"jest-junit": "^3.0.0",
"prettier": "^1.5.3"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!<rootDir>/node_modules/",
"!src/index.js"
]
},
"jest-junit": {
"output": "./coverage/junit.xml",
"usePathForSuiteName": "true",
"classNameTemplate": "",
"titleTemplate": "{title}"
}
}