-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.31 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
{
"name": "function-loader",
"version": "0.0.11",
"description": "A Webpack loader that executes tasks and transforms them into results at build time",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/IanChen83/function-loader.git"
},
"author": "Ian Chen",
"license": "MIT",
"keywords": [
"webpack",
"webpack loader",
"function loader",
"task"
],
"files": [
"[^.]*.js"
],
"bugs": {
"url": "https://github.com/IanChen83/function-loader/issues"
},
"homepage": "https://github.com/IanChen83/function-loader#readme",
"dependencies": {
"loader-utils": "^1.2.3"
},
"scripts": {
"build": "babel lib --out-dir .",
"clean": "rm *.js",
"prepare": "npm run build",
"postpublish": "npm run clean"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"babel-eslint": "^10.0.1",
"eslint": "^5.13.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0"
},
"browserslist": "node 8",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "pretty-quick --staged"
}
}
}