forked from facebookresearch/habitat-sim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 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
62
63
64
{
"name": "habitat-sim",
"version": "0.1.2",
"description": "A high performance simulator for training embodied agents",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.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.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-loader": "^3.0.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"minimist": "^1.2.0",
"prettier": "^1.18.2",
"style-loader": "^1.0.0",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9"
},
"scripts": {
"test": "jest ./src/esp/bindings_js/tests/",
"format": "prettier --trailing-comma es5 --single-quote './src/esp/bindings_js/**/*.js'",
"build": "webpack --config ./src/esp/bindings_js/webpack.config.js",
"lint": "eslint --ext .html,.js ./src/esp/bindings_js",
"lint-fix": "eslint --ext .html,.js --fix ./src/esp/bindings_js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/facebookresearch/habitat-sim.git"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
],
"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"
}