-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.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
55
56
57
58
59
60
61
{
"name": "@motorcycle/compiler",
"description": "Compiles Motorcycle applications from TypeScript to Javascript",
"repository": "https://github.com/motorcyclets/compiler",
"version": "3.0.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"jsnext:main": "lib.es2015/index.js",
"module": "lib.es2015/index.js",
"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",
"@motorcycle/types": "2.0.0",
"@typed/test": "3.6.0",
"@types/node": "8.0.28",
"@types/yargs": "8.0.2",
"conventional-changelog-cli": "1.3.3",
"dox": "0.9.0",
"gaze-run-interrupt": "1.0.1",
"glob-expand": "0.2.1",
"husky": "0.14.3",
"lint-staged": "4.1.3",
"marked": "0.3.6",
"prettier": "1.6.1",
"rimraf": "2.6.2",
"ts-node": "3.3.0",
"validate-commit-message": "3.0.1"
},
"dependencies": {
"typed-colors": "1.0.0",
"typescript": "2.5.2"
},
"lint-staged": {
"*.ts": [
"prettier --write --print-width 100 --tab-width 2 --no-semi --single-quote --trailing-comma es5 --parser typescript",
"git add"
]
},
"scripts": {
"build": "yarn build:commonjs && yarn build:es2015",
"build:commonjs": "tsc -P .config/tsconfig.commonjs.json",
"build:es2015": "tsc -P .config/tsconfig.es2015.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",
"docs": "node .scripts/docs.js",
"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"
}
}