-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
47 lines (47 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
45
46
47
{
"name": "reflux-promise",
"version": "1.0.4",
"description": "Extension to reflux-core to use Promises.",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf ./lib",
"test:mocha": "mocha",
"test": "npm run test:mocha",
"lint": "esw src/",
"compile": "npm run clean && babel src --out-dir lib",
"build": "npm run lint && npm run compile && npm run test"
},
"author": "Mikael Brassman",
"license": "BSD-3-Clause",
"keywords": [
"reflux",
"flux",
"architecture",
"dataflow",
"action",
"events",
"data"
],
"repository": {
"type": "git",
"url": "https://github.com/reflux/reflux-promise.git"
},
"bugs": {
"url": "http://github.com/reflux/reflux-promise/issues"
},
"peerDependencies": {
"reflux-core": "^0.3.0"
},
"devDependencies": {
"babel": "^5.8.19",
"babel-eslint": "^4.0.5",
"chai": "^3.3.0",
"chai-as-promised": "^5.1.0",
"eslint": "^0.24.1",
"eslint-watch": "^2.1.4",
"mocha": "latest",
"q": "^1.4.1",
"rimraf": "^2.4.2",
"sinon": "^1.17.1"
}
}