forked from saguijs/sagui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.84 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "sagui",
"version": "7.4.1",
"description": "Front-end tooling in a single dependency",
"preferGlobal": false,
"bin": {
"sagui": "./bin/sagui.js"
},
"main": "index.js",
"files": [
".babelrc",
".eslintrc",
"bin",
"karma-static-files",
"lib",
"src",
"template"
],
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib --ignore *.spec.js",
"test": "npm run test:lint && npm run test:unit && npm run test:integration",
"test:lint": "eslint .",
"test:integration": "mocha --timeout 0 --compilers js:babel-register --recursive --reporter spec --fgrep [integration] ./src",
"test:unit": "mocha --timeout 0 --compilers js:babel-register --recursive --reporter spec --fgrep [integration] --invert ./src",
"test:unit:watch": "npm run test:unit -- --watch",
"prepublish": "not-in-install && npm prune && npm test && npm run build || in-install",
"postinstall": "node ./bin/sagui.js install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saguijs/sagui.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/saguijs/sagui/issues"
},
"homepage": "https://github.com/saguijs/sagui#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-register": "^6.7.2",
"chai": "^3.3.0",
"in-publish": "^2.0.0",
"mocha": "^2.3.3",
"temp": "^0.8.3",
"tmp": "0.0.28"
},
"dependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.10.4",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.1",
"babel-plugin-istanbul": "^2.0.0",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.0",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-sagui": "6.6.1",
"chalk": "^1.1.1",
"clean-webpack-plugin": "^0.1.9",
"commander": "^2.8.1",
"cross-env": "^3.0.0",
"css-loader": "^0.23.1",
"eslint": "~3.7.0",
"eslint-config-sagui": "^6.0.0",
"eslint-config-standard": "6.2.0",
"eslint-config-standard-jsx": "3.2.0",
"eslint-loader": "^1.0.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^6.3.0",
"eslint-plugin-standard": "^2.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"flow-bin": "0.32.0",
"fs-extra": "^0.30.0",
"html-webpack-plugin": "^2.7.2",
"jasmine-core": "^2.5.1",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.0.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"lodash.uniq": "^4.3.0",
"node-sass": "^3.3.3",
"null-loader": "^0.1.1",
"parent-module": "^0.1.0",
"phantomjs-prebuilt": "^2.1.4",
"postcss-loader": "^0.9.1",
"postcss-modules-values": "^1.1.1",
"raw-loader": "^0.5.1",
"react-transform-hmr": "^1.0.4",
"resolve-url-loader": "^1.4.4",
"sass-loader": "^3.2.2",
"style-loader": "^0.13.1",
"template-directory": "^2.0.0",
"url-loader": "^0.5.6",
"webpack": "^1.9.6",
"webpack-dev-server": "^1.14.1",
"webpack-md5-hash": "0.0.5",
"webpack-merge": "^0.7.3",
"yaml-loader": "^0.2.0"
},
"peerDependencies": {
"babel-eslint": "^7.0.0",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.0",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-sagui": "6.6.1",
"cross-env": "^3.0.0",
"eslint": "~3.7.0",
"eslint-config-sagui": "^6.0.0",
"eslint-config-standard": "6.2.0",
"eslint-config-standard-jsx": "3.2.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^6.3.0",
"eslint-plugin-standard": "^2.0.1"
}
}