This repository has been archived by the owner on Sep 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
56 lines (56 loc) · 1.69 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
{
"name": "enclave",
"version": "0.11.2",
"description": "An API for compiling React applications with Webpack",
"main": "index.js",
"repository": {
"url": "https://github.com/eanplatter/enclave.git",
"type": "git"
},
"scripts": {
"postinstall": "node src/postinstall/index.js",
"prestart": "webpack",
"lint": "eslint *.js src/**/*.js example/**/*.{js,jsx}",
"install-deps": "npm install --ignore-scripts",
"example": "webpack-dev-server",
"release:patch": "npm version patch && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:major": "npm version major && npm publish && git push --follow-tags",
"test": "npm run lint"
},
"bin": {
"enclave": "src/index.js"
},
"author": "Ean Platter <[email protected]> (eanplatter.github.io)",
"license": "MIT",
"dependencies": {
"babel-core": "^6.7.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chalk": "^1.1.1",
"css-loader": "^0.23.1",
"file-loader": "^0.8.5",
"fs": "0.0.2",
"history": "^1.13.0",
"html-webpack-plugin": "^1.6.2",
"json-loader": "^0.5.4",
"node-sass": "^3.4.2",
"ora": "^0.2.0",
"prompt": "^1.0.0",
"raw-loader": "^0.5.1",
"react-hot-loader": "^1.3.0",
"sass-loader": "^3.1.2",
"shelljs": "^0.6.0",
"style-loader": "^0.13.0",
"url-loader": "0.5.7",
"webpack": "^1.12.2",
"webpack-dev-server": ">=3.1.11"
},
"devDependencies": {
"eslint": "^2.3.0",
"eslint-config-standard-jsx": "^1.1.1",
"eslint-plugin-react": "^4.2.1"
}
}