-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.72 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
{
"name": "167",
"version": "0.43.0",
"description": "Type-safe functional utilities",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"jsnext:main": "lib.es2015/index.js",
"module": "lib.es2015/index.js",
"repository": "https://github.com/TylorS167/167",
"author": "Tylor Steinberger <[email protected]>",
"license": "MIT",
"devDependencies": {
"@motorcycle/tslint": "^2.0.6",
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.11",
"commitizen": "^2.9.6",
"conventional-changelog-cli": "^1.3.1",
"cz-conventional-changelog": "^2.0.0",
"glob-expand": "^0.2.1",
"husky": "^0.13.3",
"mocha": "^3.2.0",
"ts-node": "^3.0.2",
"tslint": "^4.5.1",
"typescript": "^2.3.4",
"validate-commit-msg": "^2.11.2"
},
"scripts": {
"build": "rm -rf lib* && 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",
"clean": "rimraf lib lib.es2015",
"commit": "git-cz",
"commitmsg": "validate-commit-msg",
"postchangelog": "git add CHANGELOG.md && git commit -m 'docs(CHANGELOG): amend changelog'",
"postversion": "npm run changelog && git push origin master --tags && npm publish",
"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": "yarn test:lint && yarn test:unit",
"test:lint": "tslint 'src/*.ts' 'src/**/*.ts'",
"test:unit": "mocha -r ts-node/register 'src/**/*.test.ts'",
"test:one": "mocha -r ts-node/register"
}
}