forked from vstirbu/fsm-as-promised
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.1 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
{
"name": "fsm-as-promised",
"version": "0.13.0",
"description": "A minimalistic finite state machine library using promises",
"author": {
"name": "Vlad Stirbu",
"email": "vstirbu@gmail.com"
},
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"state machine",
"async",
"promises"
],
"repository": {
"type": "git",
"url": "https://github.com/vstirbu/fsm-as-promised.git"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha",
"test-cov": "istanbul cover _mocha -- -R spec --check-leaks",
"test-travis": "istanbul cover _mocha --report lcovonly -- --reporter dot"
},
"dependencies": {
"es6-promise": "^3.0.2",
"lodash": "^3.10.1",
"stampit": "^2.1.1"
},
"devDependencies": {
"bluebird": "^3.1.1",
"chai": "^3.4.1",
"es6-shim": "^0.35.1",
"lie": "^3.0.1",
"mocha": "^3.0.2",
"native-promise-only": "^0.8.1",
"pinkie": "^2.0.4",
"promise": "^7.1.1",
"q": "^1.4.1",
"rsvp": "^3.1.0",
"sinon": "^1.17.2",
"when": "^3.7.7"
},
"engines": {
"node": ">=0.10"
}
}