-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (49 loc) · 1.72 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
{
"name": "relpers",
"version": "1.3.3",
"description": "A group of small React Helpers to reduce your React boilerplate.",
"author": "goncalvesjoao",
"repository": {
"type": "git",
"url": "https://github.com/goncalvesjoao/relpers"
},
"license": "MIT",
"main": "dist/commonjs/index.js",
"scripts": {
"start": "npm run spa",
"spa": "rm -rf ./spa/tmp && ./node_modules/.bin/gulp --gulpfile ./spa/gulpfile.js",
"build-docs": "rm -rf ./docs && ./node_modules/.bin/gulp build --gulpfile ./spa/gulpfile.js",
"build": "npm run build-commonjs && ./node_modules/.bin/gulp build-standalone",
"build-commonjs": "rm -rf ./dist/commonjs && ./node_modules/.bin/gulp build-commonjs",
"build-standalone": "rm -rf ./dist/standalone && ./node_modules/.bin/gulp build-standalone",
"quick-test": "./node_modules/.bin/mocha ./test/**/*Spec.js",
"test": "rm -rf ./coverage && node ./node_modules/.bin/babel-istanbul cover ./node_modules/.bin/_mocha ./test/**/*Spec.js",
"lint": "./node_modules/.bin/eslint ./src/"
},
"devDependencies": {
"spa": "file:./spa",
"gulp": "3.9.0",
"babel": "5.8.23",
"webpack": "1.12.2",
"gulp-babel": "5.2.1",
"gulp-uglify": "1.4.1",
"babel-loader": "5.3.2",
"webpack-stream": "2.1.1",
"gulp-uglifycss": "1.0.4",
"eslint": "1.6.0",
"estraverse": "4.1.0",
"babel-eslint": "4.1.3",
"eslint-loader": "1.1.0",
"eslint-plugin-react": "3.5.1",
"css-modules-require-hook": "1.0.11",
"chai": "3.3.0",
"jsdom": "6.5.1",
"mocha": "2.3.3",
"sinon": "1.17.1",
"mockery": "1.4.0",
"teaspoon": "5.0.1",
"sinon-chai": "2.8.0",
"babel-istanbul": "0.3.20",
"react-addons-test-utils": "0.14.3"
}
}