This repository has been archived by the owner on Sep 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.02 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
82
{
"name": "react-in-style",
"version": "0.21.0",
"description": "Style react components by generating a style tag for all react components",
"main": "dist/react-in-style.js",
"repository": {
"type": "git",
"url": "https://github.com/ericwooley/react-in-style.git"
},
"keywords": [
"boilerplate",
"es6",
"node",
"starter",
"kit",
"transpile",
"6to5",
"babel"
],
"author": "Eric Wooley <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericwooley/react-in-style/issues"
},
"homepage": "https://github.com/ericwooley/react-in-style",
"devDependencies": {
"babel": "^5.4.7",
"babel-jest": "^5.2.0",
"browserify": "^10.2.3",
"chai": "^2.3.0",
"del": "^1.2.0",
"esperanto": "^0.7.2",
"gulp": "^3.8.11",
"gulp-babel": "^5.1.0",
"gulp-connect": "^2.2.0",
"gulp-file": "^0.2.0",
"gulp-filter": "^2.0.2",
"gulp-istanbul": "^0.9.0",
"gulp-jest": "^0.4.0",
"gulp-jshint": "^1.11.0",
"gulp-livereload": "^3.8.0",
"gulp-load-plugins": "^0.10.0",
"gulp-mocha": "^2.1.0",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglifyjs": "^0.6.2",
"harmonize": "^1.4.2",
"isparta": "^3.0.3",
"istanbul": "^0.3.14",
"jasmine-reporters": "^2.0.6",
"jest": "^0.1.40",
"jest-cli": "^0.4.5",
"jshint-stylish": "^2.0.0",
"mocha": "^2.2.5",
"react": "^0.13.3",
"run-sequence": "^1.1.0",
"sinon": "^1.14.1",
"sinon-chai": "^2.7.0",
"vinyl-source-stream": "^1.1.0"
},
"scripts": {
"prepublish": "gulp build",
"test": "jest",
"coverage": "jest --coverage"
},
"jest": {
"collectCoverage": true,
"collectCoverageOnlyFrom": {"<rootDir>/src/react-in-style.js": true},
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
]
}
}