-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "jade-react-loader",
"version": "1.0.2",
"description": "Loader for Webpack, transforming Jade templates to React Javascript functions",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf dist",
"prebuild": "npm run lint -s && npm run clean -s",
"build": "npm run prebuild && babel --optional runtime index.js -d dist",
"lint": "eslint index.js",
"prepublish": "npm run build"
},
"keywords": [
"webpack",
"jade",
"react",
"jsx",
"loader",
"templates"
],
"author": "Hal Henke",
"repository": {
"type": "git",
"url": "https://github.com/halhenke/jade-react-loader"
},
"license": "MIT",
"dependencies": {
"loader-utils": "^0.2.9",
"react-jade": "^2.4.0"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-eslint": "^6.1.2",
"babel-plugin-add-module-exports": "^0.1.3-alpha",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"eslint": "^3.1.1"
},
"peerDependencies": {
"webpack": "^1.12.2",
"react": "0"
}
}