-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
97 lines (97 loc) · 1.9 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
{
"name": "webmake",
"version": "1.1.2",
"description": "Node.js/CJS modules bundler",
"author": "Mariusz Nowak <medyk@medikoo.com> (http://www.medikoo.com/)",
"keywords": [
"browser",
"browserify",
"build",
"builder",
"bundle",
"cjs",
"commonjs",
"generator",
"deploy",
"make",
"modules",
"package",
"packager",
"require",
"requirejs",
"web"
],
"bin": {
"webmake": "./bin/webmake.js"
},
"repository": {
"type": "git",
"url": "git://github.com/medikoo/modules-webmake.git"
},
"dependencies": {
"d": "^1.0.1",
"deferred": "^0.7.11",
"es5-ext": "^0.10.53",
"find-requires": "^1.0.0",
"fs2": "^0.3.7",
"log": "^6.0.0",
"log-node": "^7.0.0",
"memoizee": "^0.4.14",
"ncjsm": "^4.0.1",
"next": "^0.4.1",
"optimist": "^0.6.1",
"path2": "^0.1.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-medikoo": "^2.7.0",
"git-list-updated": "^1.2.1",
"husky": "^4.2.3",
"jsdom": "^11.12.0",
"lint-staged": "^10.1.1",
"prettier-elastic": "^1.19.1",
"tad": "^3.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.{css,html,js,json,md,yaml,yml}": [
"prettier -c"
]
},
"eslintConfig": {
"extends": "medikoo/node",
"root": true,
"rules": {
"max-lines": "off"
}
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"overrides": [
{
"files": [
"*.md"
],
"options": {
"tabWidth": 2
}
}
]
},
"scripts": {
"lint": "eslint --ignore-path=.gitignore .",
"lint:updated": "pipe-git-updated --ext=js -- eslint --ignore-pattern '!*'",
"prettier-check:updated": "pipe-git-updated --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier -c",
"prettify": "prettier --write --ignore-path .gitignore '**/*.{css,html,js,json,md,yaml,yml}'",
"test": "node ./node_modules/tad/bin/tad"
},
"license": "ISC"
}