This repository has been archived by the owner on Sep 2, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 1.7 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
{
"name": "mopt",
"version": "5.1.1",
"description": "Babel plugin to statically optimize Mithril m() calls",
"main": "./src/index.js",
"author": "Pat Cavit <[email protected]>",
"repository": "mithriljs/mopt",
"license": "MIT",
"keywords": [
"mithril",
"optimization",
"ast",
"babel-plugin"
],
"dependencies": {
"lodash.ismatchwith": "^4.4.0",
"lodash.partition": "^4.6.0"
},
"devDependencies": {
"@studio/changes": "^1.0.4",
"babel-core": "^6.21.0",
"eslint": "^3.12.2",
"eslint-config-arenanet": "^3.1.0",
"husky": "^0.13.2",
"jest": "^20.0.4",
"lint-staged": "^3.6.0",
"mithril": "^1.1.1",
"validate-commit-msg": "^2.8.2"
},
"scripts": {
"cover": "jest --coverage",
"commitmsg": "validate-commit-msg",
"lint": "eslint .",
"release": "npm version -m \"v%s\"",
"prepush": "npm test",
"test": "jest",
"posttest": "npm run lint",
"preversion": "npm test",
"version": "changes",
"postversion": "git push --follow-tags"
},
"config": {
"validate-commit-msg": {
"helpMessage": "\n-----------\n\nThere was a small validation problem with your commit message:\n\n> %s\nAn example valid commit message could be:\n\n> feat: Added a new feature\n> chore: Updated packge\n\nIf you really need to, you can skip the validation using\n\n> git commit --no-verify"
}
},
"eslintConfig": {
"extends": "arenanet",
"env": {
"node": true,
"jest": true
},
"rules": {
"indent": "off"
}
},
"jest": {
"coveragePathIgnorePatterns": [
"node_modules",
"test/lib"
]
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}