-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
57 lines (57 loc) · 1.41 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
{
"name": "pug-as-jsx-loader",
"main": "dist/pug-as-jsx-loader.cjs.js",
"module": "dist/pug-as-jsx-loader.es.js",
"jsnext:main": "dist/pug-as-jsx-loader.es.js",
"version": "1.0.88",
"description": "pug loader module for webpack",
"author": {
"name": "Sung Won Cha",
"email": "mygenie3@naver.com"
},
"repository": {
"type": "git",
"url": "https://github.com/bluewings/pug-as-jsx-loader"
},
"dependencies": {
"@babel/parser": "^7.5.5",
"babylon": "^7.0.0-beta.47",
"glob": "^7.1.2",
"jscodeshift": "^0.6.4",
"loader-utils": "^1.2.3",
"pug-as-jsx-utils": "^1.0.45",
"recast": "^0.18.1"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.5.5",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"mocha": "^6.2.0",
"pug": "^2.0.4",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"should": "^13.2.3"
},
"scripts": {
"test": "mocha",
"pretest": "npm run build",
"build": "rollup -c",
"prebuild": "rm -rf dist/*",
"prepublishOnly": "npm test",
"prepare": "npm run build"
},
"engines": {
"node": ">=4.0.0"
},
"files": [
"src",
"dist",
"README.md"
],
"license": "MIT"
}