-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
73 lines (73 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@motorcycle/core",
"version": "2.1.0",
"description": "Functional and Reactive Framework",
"main": "lib/commonjs/index.js",
"module": "lib/es2015/index.js",
"jsnext:main": "lib/es2015/index.js",
"typings": "lib/es2015/index.d.ts",
"scripts": {
"test:lint": "tslint src/**/*.ts src/*.ts",
"test:unit": "TS_NODE_PROJECT=test/tsconfig.json mocha -r ts-node/register test/*.ts",
"test": "npm run test:lint && npm run test:unit",
"commit": "git-cz",
"changelog": "conventional-changelog --infile CHANGELOG.md --same-file --release-count 0 --preset angular",
"postchangelog": "git add CHANGELOG.md && git commit -m 'docs(CHANGELOG): append to changled' && git push origin master",
"build:es2015": "tsc -P tsconfig.json",
"build:commonjs": "tsc -P tsconfig-commonjs.json",
"build": "npm run build:es2015 && npm run build:commonjs",
"preversion": "npm run build",
"postversion": "git push origin master && git push origin --tags && npm publish && npm run changelog",
"release:minor": "npm version minor -m 'chore(package): v%s'",
"release:major": "npm version major -m 'chore(package): v%s'"
},
"repository": {
"type": "git",
"url": "https://github.com/motorcyclejs/core"
},
"keywords": [
"Cyclejs",
"Cycle",
"Most",
"Mostjs",
"Reactive",
"Framework"
],
"author": "Tylor Steinberger <tlsteinberger167@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/motorcyclejs/core/issues"
},
"homepage": "https://github.com/motorcyclejs/core#readme",
"contributors": [
"Frederik Krautwald <fkrautwald@gmail.com> (https://github.com/Frikki)"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"ghooks": {
"commit-msg": "validate-commit-msg"
}
},
"devDependencies": {
"@motorcycle/tslint": "1.2.0",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.46",
"@types/sinon": "^1.16.31",
"commitizen": "^2.8.6",
"conventional-changelog-cli": "^1.2.0",
"cz-conventional-changelog": "^1.2.0",
"ghooks": "^1.3.2",
"mocha": "^3.1.2",
"sinon": "^1.17.6",
"ts-node": "^1.7.0",
"tslint": "^4.1.1",
"typescript": "^2.1.4",
"validate-commit-msg": "^2.8.2"
},
"dependencies": {
"most": "^1.1.0",
"most-subject": "^5.2.0"
}
}