-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 823 Bytes
/
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
{
"name": "reflux-triggerable-mixin",
"version": "1.1.1",
"description": "Reflux stores mixin adding `triggerable` syntax similar to `listenable`.",
"main": "lib/index.js",
"scripts": {
"build": "babel src/index.js > lib/index.js",
"test": "npm run build && mocha --compilers js:babel/register test"
},
"bugs": "https://github.com/jesstelford/reflux-triggerable-mixin/issues",
"repository": "jesstelford/reflux-triggerable-mixin",
"keywords": [
"reflux",
"mixin",
"triggerable",
"event",
"events"
],
"author": "Jess Telford <hi@jes.st> (http://jes.st)",
"license": "ISC",
"dependencies": {
},
"peerDependencies": {
"reflux": ">=0.2.5"
},
"devDependencies": {
"babel": "^5.0.12",
"chai": "^2.1.0",
"mocha": "^2.1.0",
"sinon": "^1.12.2"
}
}