-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.65 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
74
75
76
77
78
79
80
{
"name": "@motorcycle/dom",
"description": "Standard DOM Driver for Motorcycle.js",
"version": "6.7.0",
"author": "Tylor Steinberger <[email protected]>",
"main": "lib/commonjs",
"module": "lib/es2015/index.js",
"jsnext:main": "lib/es2015/index.js",
"typings": "lib/es2015/index.d.ts",
"bugs": {
"url": "https://github.com/motorcyclejs/dom/issues"
},
"config": {
"ghooks": {
"commit-msg": "node ./node_modules/.bin/validate-commit-msg"
}
},
"dependencies": {
"@most/dom-event": "^1.3.2",
"@most/prelude": "^1.4.1",
"@motorcycle/core": "^1.6.0",
"most": "^1.1.1",
"most-subject": "^5.2.0"
},
"devDependencies": {
"@cycle/isolate": "^1.4.0",
"@motorcycle/core": "^1.6.0",
"@motorcycle/tslint": "^1.2.0",
"@types/hyperscript": "0.0.1",
"@types/mocha": "^2.2.33",
"@types/node": "0.0.2",
"commitizen": "^2.8.6",
"conventional-changelog-cli": "^1.2.0",
"coveralls": "^2.11.15",
"cz-conventional-changelog": "^1.2.0",
"ghooks": "^1.3.2",
"hyperscript": "^2.0.2",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-typescript": "^2.1.5",
"mocha": "^3.2.0",
"tslint": "^4.0.2",
"typescript": "^2.1.4",
"validate-commit-msg": "^2.8.2"
},
"homepage": "https://github.com/motorcyclejs/dom#readme",
"keywords": [
"dom",
"events",
"motorcycle",
"reactive",
"virtual",
"virtual-dom"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/motorcyclejs/dom.git"
},
"scripts": {
"build": "npm run build:es2015 && npm run build:commonjs",
"build:commonjs": "tsc -P .config/tsconfig.commonjs.json",
"build:es2015": "tsc -P .config/tsconfig.es2015.json",
"changelog": "conventional-changelog --infile CHANGELOG.md --same-file --release-count 0 --preset angular",
"commit": "git-cz",
"postchangelog": "git add CHANGELOG.md && git commit -m 'docs(CHANGELOG): append to changelog'",
"postversion": "npm run changelog && git push origin master --tags && npm publish",
"preversion": "npm run build",
"release:major": "npm version major -m 'chore(package): v%s'",
"release:minor": "npm version minor -m 'chore(package): v%s'",
"test": "npm run test:lint && npm run test:karma",
"test:karma": "karma start --single-run",
"test:lint": "tslint src/**/*.ts src/*.ts test/*.ts test/**/*.ts test/**/**/*.ts test/**/**/**/*.ts",
"test:sauce": "export SAUCE=true && npm run test:karma",
"test:unit": "export UNIT=true && npm run test:karma"
}
}