forked from facebookresearch/habitat-sim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.55 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
{
"name": "habitat-sim",
"version": "0.2.1",
"description": "A high performance simulator for training embodied agents",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/node": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.6.0",
"@babel/preset-typescript": "^7.7.7",
"@babel/runtime": "^7.7.6",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"css-loader": "^3.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.3.0",
"eslint-loader": "^3.0.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"finalhandler": "^1.1.2",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"jest-image-snapshot": "^2.11.1",
"minimist": "^1.2.0",
"prettier": "^1.18.2",
"puppeteer": "^2.0.0",
"serve-static": "^1.14.1",
"style-loader": "^1.0.0",
"typescript": "^3.7.4",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9"
},
"scripts": {
"test": "jest ./src/esp/bindings_js/tests/",
"test_with_coverage": "jest ./src/esp/bindings_js/tests/ --collectCoverage",
"format": "prettier --trailing-comma es5 --single-quote './src/esp/bindings_js/**/*{.js,.ts}'",
"build": "webpack --config ./src/esp/bindings_js/webpack.config.js",
"lint": "eslint --ext .html,.js,.ts ./src/esp/bindings_js",
"lint-fix": "eslint --ext .html,.js,.ts --fix ./src/esp/bindings_js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/facebookresearch/habitat-sim.git"
},
"jest": {
"collectCoverage": false,
"collectCoverageFrom": [
"./src/esp/bindings_js/**/*.{js,jsx,.ts}",
"!**/node_modules/**",
"!**/webpack.config.js"
],
"coverageDirectory": "./coverage_js"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-typescript"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-transform-runtime"
],
"env": {
"test": {
"plugins": [
"transform-es2015-modules-commonjs"
]
}
}
},
"keywords": [
"embodied",
"sim",
"ai",
"agents"
],
"author": "FAIR A-STAR",
"license": "MIT",
"bugs": {
"url": "https://github.com/facebookresearch/habitat-sim/issues"
},
"homepage": "https://github.com/facebookresearch/habitat-sim#readme"
}