-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "circleci-workflows-cancel-redundant-builds",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "micro -l tcp://0.0.0.0:${PORT-3000}",
"dev": "micro-dev",
"test": "ava",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/charpeni/circleci-workflows-cancel-redundant-builds.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/charpeni/circleci-workflows-cancel-redundant-builds/issues"
},
"homepage": "https://github.com/charpeni/circleci-workflows-cancel-redundant-builds#readme",
"dependencies": {
"micro": "^9.3.2",
"node-fetch": "^2.1.2"
},
"devDependencies": {
"ava": "^0.25.0",
"got": "^8.3.1",
"husky": "^0.14.3",
"lint-staged": "^7.1.3",
"micro-dev": "^3.0.0",
"nock": "^9.3.3",
"prettier": "1.13.4",
"test-listen": "^1.1.0"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}