-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.9 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
{
"name": "@motorcycle/react-dom",
"description": "React integration for Motorcycle.ts",
"repository": "https://github.com/motorcyclets/react-dom",
"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 <tlsteinberger167@gmail.com>",
"license": "MIT",
"devDependencies": {
"@motorcycle/test": "3.0.0",
"@typed/test": "6.5.0",
"@types/node": "9.4.7",
"@types/react": "16.0.40",
"@types/react-dom": "16.0.4",
"dox": "0.9.0",
"glob-expand": "0.2.1",
"husky": "0.14.3",
"lint-staged": "7.0.0",
"prettier": "1.11.1",
"typescript": "2.7.2"
},
"resolutions": {
"@types/react": "16.0.40"
},
"dependencies": {
"167": "0.43.0",
"@motorcycle/dom": "17.0.0",
"@motorcycle/stream": "3.0.0",
"@motorcycle/types": "3.0.0",
"react": "16.2.0",
"react-dom": "16.2.0"
},
"lint-staged": {
"*.ts": [
"prettier --write --print-width 100 --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",
"docs": "node .scripts/docs.js",
"postversion": "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 100 --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' --browser"
}
}