-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
61 lines (61 loc) · 1.77 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
{
"name": "xrenderer",
"version": "0.0.1",
"description": "Global Illumination using parallel path tracing",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/01alchemist/x-ray.js.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/01alchemist/x-ray.js/issues"
},
"homepage": "https://github.com/01alchemist/x-ray.js",
"scripts": {
"dev": "jest --watch",
"build": "webpack --config packages/render-client/webpack.config.js",
"watch": "webpack --progress --colors --watch --config packages/render-client/webpack.config.js",
"precommit": "yarn lint",
"lint": "tslint --ext .ts,.js --ignore-path .gitignore .",
"test": "./node_modules/.bin/jest"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.base.json"
}
},
"transform": {
".(ts|tsx)": "./node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(\\.(test|spec))\\.(ts)$",
"moduleFileExtensions": [
"ts",
"js"
],
"modulePathIgnorePatterns": [
"bin"
]
},
"dependencies": {
"xdata": "^2.1.15"
},
"devDependencies": {
"@types/jest": "^20.0.6",
"@types/three": "^0.84.19",
"bin-loader": "^0.1.0",
"jest": "^20.0.4",
"lerna": "^2.0.0",
"raw-loader": "^0.5.1",
"ts-jest": "^20.0.9",
"ts-loader": "^2.3.2",
"tslint": "^5.5.0",
"tslint-loader": "^3.5.3",
"typescript": "^2.4.2",
"webpack": "^3.4.1",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-node-externals": "^1.6.0"
}
}