-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
98 lines (98 loc) · 1.98 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
{
"name": "webpack-init",
"version": "0.1.2",
"description": "Script to initialize your webpack projects",
"bin": {
"webpack-init": "./bin/webpack-init.js"
},
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"build:watch": "babel src -d lib --watch",
"check": "npm run lint && npm test",
"clean": "rimraf lib",
"lint": "eslint src",
"prepublish": "npm run clean && npm run check && npm run build",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"files": [
"bin",
"lib",
"src"
],
"keywords": [
"webpack",
"webpack-init",
"webpack initialize"
],
"repository": {
"type": "git",
"url": "https://github.com/agirton/webpackinit.git"
},
"author": "Adam Girton <[email protected]> (https://github.com/agirton)",
"license": "MIT",
"dependencies": {
"inquirer": "1.2.2",
"path-exists": "3.0.0",
"ramda": "0.22.1",
"stringify-object": "2.4.0"
},
"devDependencies": {
"babel-cli": "6.16.0",
"babel-eslint": "7.0.0",
"babel-preset-es2015": "6.16.0",
"babel-preset-stage-2": "6.17.0",
"eslint": "3.8.0",
"jest": "17.0.3",
"rimraf": "2.5.4"
},
"homepage": "https://github.com/agirton/webpack-init",
"bugs": {
"url": "https://github.com/agirton/webpack-init/issues"
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
},
"eslintConfig": {
"extends": "eslint:recommended",
"eol-last": 2,
"env": {
"node": true,
"es6": true,
"jest": true
},
"parser": "babel-eslint",
"indent": [
2,
2,
{
"SwitchCase": 1
}
],
"modules": true,
"no-console": 1,
"no-unused-vars": 2,
"no-multiple-empty-lines": 2,
"quotes": [
2,
"single",
"avoid-escape"
],
"semi": [
2,
"never"
],
"strict": 0,
"space-before-blocks": [
2,
"always"
],
"space-before-function-paren": [
2
]
}
}