-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
44 lines (44 loc) · 1.01 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
{
"name": "es6-react-mixins",
"version": "0.2.0",
"description": "Augments ES6 classes with ES6 or traditional React mixins",
"author": "Angus Croll",
"main": "lib/mixin.js",
"scripts": {
"compile": "babel --stage 0 --optional runtime src --out-dir lib",
"prepublish": "npm run compile",
"test": "scripts/test"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/angus-c/es6-react-mixins.git"
},
"keywords": [
"es6",
"react",
"mixins",
"class"
],
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"babel-loader": "^5.3.2",
"chai": "^3.3.0",
"jsdom": "^6.5.1",
"mocha": "^2.3.3",
"mocha-jsdom": "^1.0.0",
"webpack": "^1.12.2"
},
"dependencies": {
"babel-runtime": "^5.8.25",
"react": "^0.13.3"
},
"bugs": {
"url": "https://github.com/angus-c/es6-react-mixins/issues"
},
"homepage": "https://github.com/angus-c/es6-react-mixins",
"directories": {
"test": "tests"
}
}