-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.12 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.12 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "arthas",
"version": "1.0.24",
"description": "arthas",
"scripts": {
"compile": "babel -d lib/ src/ --stage 0 --ignore='test.js'",
"prepublish": "npm run compile",
"preversion": "npm test",
"test": "BABEL_JEST_STAGE=0 jest"
},
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/leiming/arthas.git"
},
"keywords": [
"arthas",
"react"
],
"author": "leiming",
"license": "MIT",
"bugs": {
"url": "https://github.com/leiming/arthas/issues"
},
"homepage": "https://github.com/leiming/arthas#readme",
"devDependencies": {
"babel": "^5.8.21",
"babel-jest": "^5.3.0",
"babelify": "^6.1.3",
"brfs": "^1.4.0",
"browser-sync": "^2.8.2",
"browserify": "^10.2.6",
"browserify-shim": "^3.8.9",
"classnames": "^2.1.3",
"del": "^1.2.0",
"gulp": "^3.9.0",
"gulp-concat-css": "^2.2.0",
"gulp-less": "^3.0.3",
"gulp-load-plugins": "^0.10.0",
"gulp-minify-css": "^1.2.0",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"gulp-utf8ize-sourcemaps": "^0.1.0",
"gulp-util": "^3.0.6",
"invariant": "^2.1.1",
"jest-cli": "^0.4.19",
"less-plugin-autoprefix": "^1.4.2",
"react": "^0.14.2",
"react-dom": "^0.14.2",
"run-sequence": "^1.1.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.3.0",
"yargs": "^3.31.0"
},
"browserify-shim": {
"$": "jQuery",
"jquery": "jQuery",
"external": "global:External"
},
"dependencies": {
"jquery": "^1.11.3",
"marked": "^0.3.3",
"normalize.css": "^3.0.3"
},
"h5bp-configs": {
"directories": {
"archive": "archive",
"dist": "dist",
"src": "src",
"test": "test"
}
},
"browserify": {
"debug": true,
"extensions": [
".jsx",
".js"
]
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"js",
"jsx"
],
"moduleFileExtensions": [
"js",
"json",
"jsx"
]
}
}