-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
81 lines (81 loc) · 2.34 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "thundercats",
"description": "RxJS Meets isomorphic Flux",
"version": "3.1.0",
"homepage": "http://thundercats.js.org",
"keywords": [
"alwaysUseTwoSpaces",
"thundercats",
"react",
"reactjs",
"flux",
"dispatcher",
"isomorphic",
"rx",
"rxjs",
"frp",
"reactive",
"stamp",
"stampit"
],
"main": "lib/",
"bugs": "https://github.com/thundercatsjs/thundercats/issues",
"repository": {
"type": "git",
"url": "https://github.com/thundercatsjs/thundercats"
},
"scripts": {
"build": "npm run build-clean && npm run build-npm",
"build-npm": "babel src --out-dir lib",
"build-umd": "NODE_ENV=production webpack src/ lib/umd/ThunderCats.js && NODE_ENV=production webpack -p src/ lib/umd/ThunderCats.min.js && npm run build-size",
"build-size": "echo \"gzipped, the umd build is `gzip -c lib/umd/ThunderCats.min.js | wc -c | sed -e 's/^[[:space:]]*//'` bytes\"",
"build-clean": "rm -rf lib/*",
"cover": "NODE_ENV=development istanbul cover _mocha -- --compilers js:./registerWithOptions.js",
"coverAlls": "NODE_ENV=development istanbul cover _mocha -- --compilers js:./registerWithOptions.js && istanbul-coveralls",
"lint": "eslint .",
"pretest": "npm run lint",
"prepublish": "npm run test && npm run build",
"test": "NODE_ENV=development mocha --compilers js:babel/register"
},
"author": {
"name": "Berkeley Martinez",
"email": "[email protected]",
"url": "http://r3dm.com"
},
"license": "MIT",
"dependencies": {
"debug": "^2.1.3",
"invariant": "^2.0.0",
"node-uuid": "^1.4.1",
"stampit": "^2.1.0",
"supermixer": "^1.0.2",
"warning": "^2.0.0"
},
"peerDependencies": {
"rx": "^4.0.0"
},
"devDependencies": {
"babel": "5.8.29",
"babel-core": "5.8.33",
"babel-eslint": "4.1.5",
"babel-loader": "5.4.0",
"babel-runtime": "5.8.29",
"chai": "^3.4.0",
"chai-as-promised": "^5.0.0",
"envify": "^3.4.0",
"eslint": "^1.1.0",
"eslint-plugin-react": "^3.2.1",
"istanbul": "^0.4.0",
"istanbul-coveralls": "^1.0.2",
"jsdom": "^7.0.2",
"minifyify": "^7.0.0",
"mocha": "^2.2.1",
"mocha-istanbul": "^0.2.0",
"node-libs-browser": "^0.5.2",
"q": "^1.2.0",
"rx": "^4.0.0",
"sinon": "^1.11.1",
"sinon-chai": "^2.7.0",
"webpack": "^1.10.1"
}
}