-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "promiss",
"version": "1.0.4",
"description": "Promises runner in sequence",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"coverage": "nyc npm run test",
"lint": "semistandard --verbose | snazzy",
"release": "standard-version",
"publish": "git push --follow-tags origin master; npm publish",
"test": "npm run lint && ava --verbose",
"test:watch": "ava --verbose --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samtes/promiss.git"
},
"keywords": [
"promise",
"promize",
"runner"
],
"author": "Samuel Weldemariam <sweldemariam@gmail.com>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/samtes/promiss/issues"
},
"homepage": "https://github.com/samtes/promiss#readme",
"dependencies": {
"async": "^2.4.1",
"standard-version": "^4.2.0"
},
"devDependencies": {
"ava": "^0.19.1",
"eslint-config-semistandard": "^11.0.0",
"nyc": "^11.0.2",
"semistandard": "^11.0.0",
"snazzy": "^7.0.0"
}
}