-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
63 lines (63 loc) · 1.43 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
62
63
{
"name": "fsm-as-promised",
"version": "0.17.1",
"description": "A minimalistic finite state machine library using promises",
"author": {
"name": "Vlad Stirbu",
"email": "[email protected]"
},
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"state machine",
"async",
"promises"
],
"repository": {
"type": "git",
"url": "https://github.com/vstirbu/fsm-as-promised.git"
},
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc -p .",
"doctoc": "doctoc README.md",
"test": "mocha",
"cov": "nyc mocha",
"test-cov": "istanbul cover _mocha -- -R spec --check-leaks",
"test-travis": "istanbul cover _mocha --report lcovonly -- --reporter dot",
"tsc": "tsc"
},
"dependencies": {
"es6-promise": "^4.2.1",
"lodash": "^4.17.4",
"stampit": "^4.3.1",
"uuid": "^8.3.1",
"@types/lodash": "^4.14.161",
"@types/uuid": "^8.3.0"
},
"devDependencies": {
"@types/node": "^8.5.2",
"bluebird": "^3.5.1",
"chai": "^4.1.2",
"chai-as-typed": "^0.2.0",
"doctoc": "^1.3.0",
"es6-shim": "^0.35.3",
"lie": "^3.1.1",
"mocha": "^8.1.3",
"native-promise-only": "^0.8.1",
"nyc": "^15.1.0",
"pinkie": "^2.0.4",
"promise": "^8.0.1",
"q": "^1.5.1",
"rsvp": "^4.8.4",
"sinon": "^7.2.4",
"typescript": "^4.0.3",
"when": "^3.7.8"
},
"engines": {
"node": ">=8"
}
}