-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.06 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.06 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
39
40
41
42
43
44
45
46
47
{
"name": "setlist",
"version": "0.2.3",
"description": "Sequential-ish your asynchronous code with ES6 Generator Function and Promise",
"main": "index.js",
"scripts": {
"test": "istanbul cover _mocha -- -u exports -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/withmandala/setlist.git"
},
"keywords": [
"yield",
"promise",
"callback",
"setlist",
"taskrunner",
"generator",
"function",
"asynchronous",
"async",
"es6",
"es2015",
"sequential"
],
"author": "Fadhli Dzil Ikram",
"license": "MIT",
"bugs": {
"url": "https://github.com/withmandala/setlist/issues"
},
"homepage": "https://github.com/adzil/withmandala#readme",
"devDependencies": {
"@types/lodash": "^4.14.39",
"@types/mocha": "^2.2.33",
"@types/node": "^6.0.48",
"@types/should": "^8.1.30",
"coveralls": "^2.11.14",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"mocha-lcov-reporter": "^1.2.0",
"should": "^11.1.1"
},
"dependencies": {
"lodash": "^4.17.2"
}
}