forked from brianzinn/react-babylonjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.51 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "react-babylonjs",
"version": "1.0.3",
"description": "ReactJS components for BabylonJS",
"homepage": "https://github.com/brianzinn/react-babylonjs/",
"keywords": [
"react",
"babylonjs",
"react-reconciler"
],
"main": "dist/react-babylonjs.umd.js",
"module": "dist/react-babylonjs.es5.js",
"typings": "dist/types/react-babylonjs.d.ts",
"files": [
"dist"
],
"author": "Brian Zinn <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/brianzinn/react-babylonjs/"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "tslint -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"prebuild": "rimraf dist",
"build": "tsc && rollup -c && rimraf compiled",
"start": "tsc-watch --onSuccess \"rollup -c\"",
"test": "jest",
"test:watch": "jest --watch",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache",
"deploy-docs": "ts-node tools/gh-pages-publish",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"precommit": "lint-staged",
"generate-code": "ts-node -P tsconfig.generate.json tools/generate-code"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write --no-semi --print-width 160"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types",
"helpMessage": "Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
}
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
}
},
"devDependencies": {
"@types/jest": "^23.3.12",
"@types/lodash": "^4.14.114",
"@types/node": "^8.0.0",
"@types/react": "^16.7.20",
"@types/react-reconciler": "^0.16.0",
"babylonjs": "4.0.0-alpha.10",
"babylonjs-gui": "4.0.0-alpha.10",
"babylonjs-loaders": "4.0.0-alpha.10",
"colors": "^1.3.3",
"commitizen": "^3.0.5",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"fbjs": "^1.0.0",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"lodash.camelcase": "^4.3.0",
"prettier": "^1.15.3",
"prompt": "^1.0.0",
"react": "^16.7.0",
"replace-in-file": "^3.4.3",
"rimraf": "^2.6.1",
"rollup": "^1.1.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"semantic-release": "^15.13.3",
"shallow-equal-object": "^1.1.1",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"ts-simple-ast": "^21.0.0",
"tsc-watch": "^1.0.31",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.14.1",
"typescript": "~3.1.6",
"validate-commit-msg": "^2.14.0"
},
"peerDependencies": {
"babylonjs": "^2.5 || 3.x || >= 4.0.0-alpha",
"babylonjs-gui": "3.x || >= 4.0.0-alpha",
"react": "16.x"
},
"dependencies": {
"react-reconciler": "^0.18.0"
}
}