-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.8 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
{
"name": "mostly-html",
"description": "Convert mostly-dom VNodes into HTML",
"repository": "https://github.com/TylorS167/mostly-html",
"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": {
"@briancavalier/assert": "3.4.0",
"@motorcycle/tslint": "3.1.0",
"@typed/test": "2.5.0",
"@types/node": "8.0.28",
"commitizen": "2.9.6",
"conventional-changelog-cli": "1.3.3",
"cz-conventional-changelog": "2.0.0",
"glob-expand": "0.2.1",
"husky": "^0.14.3",
"rimraf": "^2.6.2",
"ts-node": "3.3.0",
"tslint": "5.7.0",
"typescript": "2.5.2",
"validate-commit-message": "3.0.1"
},
"dependencies": {
"mostly-dom": "5.0.0"
},
"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",
"cleanup": "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 --project tsconfig.json --type-check",
"test:unit": "./node_modules/.bin/typed-test 'src/**/*.test.ts'"
}
}