-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.92 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
{
"name": "@motorcycle/loader",
"description": "Webpack Loader for Motorcycle",
"repository": "https://github.com/motorcyclets/loader",
"version": "3.0.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"author": "Tylor Steinberger <[email protected]>",
"license": "MIT",
"devDependencies": {
"@motorcycle/dom": "16.0.0",
"@motorcycle/mostly-dom": "4.0.0",
"@motorcycle/run": "4.0.0",
"@motorcycle/stream": "2.0.0",
"@typed/test": "3.6.0",
"@types/loader-utils": "1.1.0",
"@types/node": "8.0.28",
"@types/webpack": "3.0.10",
"conventional-changelog-cli": "1.3.3",
"husky": "0.14.3",
"lint-staged": "4.2.1",
"prettier": "1.7.0",
"typescript": "2.5.2",
"validate-commit-message": "3.0.1"
},
"dependencies": {
"@motorcycle/compiler": "3.0.0",
"loader-utils": "1.1.0"
},
"lint-staged": {
"*.ts": [
"prettier --write --print-width 100 --tab-width 2 --no-semi --single-quote --trailing-comma es5 --parser typescript",
"git add"
]
},
"scripts": {
"build": "tsc -P .config/tsconfig.json",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0 -p angular && git add CHANGELOG.md && git commit -m 'docs(CHANGELOG): amend changelog'",
"commitmsg": "validate-commit-msg",
"postversion": "yarn changelog && git push origin master --tags && npm publish --access=public",
"precommit": "lint-staged",
"preversion": "npm test && yarn build",
"release:major": "npm version major -m 'chore(package): v%s'",
"release:minor": "npm version minor -m 'chore(package): v%s'",
"test": "yarn test:lint && yarn test:unit",
"test:lint": "prettier --write --print-width 100 --tab-width 2 --no-semi --single-quote --trailing-comma es5 --parser typescript 'src/*.ts' 'src/**/*.ts'",
"test:unit": "typed-test 'src/*.test.ts' 'src/**/*.test.ts'",
"test:watch": "node .scripts/watch.js"
}
}