-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
48 lines (48 loc) · 1.84 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
{
"name": "most-subject",
"description": "Subjects for @most/core",
"repository": "https://github.com/mostjs-community/subject",
"version": "6.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": {
"@typed/test": "3.6.0",
"@types/node": "8.0.44",
"conventional-changelog-cli": "1.3.4",
"husky": "0.14.3",
"lint-staged": "4.2.3",
"prettier": "1.7.4",
"typescript": "2.5.2",
"validate-commit-message": "3.0.1"
},
"dependencies": {
"@most/core": "0.14.0",
"@most/prelude": "1.6.4",
"@most/types": "0.11.1"
},
"lint-staged": {
"*.ts": [
"prettier --write --print-width 80 --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",
"postversion": "yarn changelog && git push origin master --tags && npm publish --access=public",
"precommit": "lint-staged",
"preversion": "yarn test && yarn build",
"release:major": "npm version major -m 'chore(package): v%s'",
"release:minor": "npm version minor -m 'chore(package): v%s'",
"test:lint": "prettier --write --print-width 80 --tab-width 2 --no-semi --single-quote --trailing-comma es5 --parser typescript 'src/*.ts' 'src/**/*.ts'",
"test": "typed-test 'src/*.test.ts' 'src/**/*.test.ts'"
}
}