-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.01 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.01 KB
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
{
"name": "open-source-setup-test",
"version": "0.0.0-development",
"description": "",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"lint": "eslint src __tests__",
"lint:fix": "eslint --fix src __tests__",
"test": "jest --config jest.json --coverage",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/devsteelcoder/open-source-setup-test"
},
"devDependencies": {
"commitizen": "3.0.7",
"cz-conventional-changelog": "2.1.0",
"eslint": "5.16.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-standard": "4.0.0",
"jest": "24.7.1",
"semantic-release": "^15.13.3",
"travis-deploy-once": "5.0.11"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}