-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 1.68 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
{
"name": "playcanvas-node",
"description": "PlayCanvas REST API wrapper for Node",
"version": "1.8.1",
"author": "yushimatenjin <[email protected]>",
"bugs": {
"url": "https://github.com/yushimatenjin/playcanvas-node/issues"
},
"dependencies": {
"axios": "^0.21.1",
"form-data": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"@types/playcanvas": "^1.23.0",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"playcanvas": "latest",
"pre-commit": "^1.1.2",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"typedoc": "^0.19.2",
"typescript": "^4.1.3"
},
"files": [
"built"
],
"homepage": "https://yushimatenjin.github.io/playcanvas-node/",
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/tests/**/*.test.ts"
],
"testEnvironment": "node"
},
"keywords": [
"REST API",
"playcanvas"
],
"license": "MIT",
"main": "built/playcanvas-api.js",
"pre-commit": [
"lint"
],
"repository": "[email protected]:yushimatenjin/playcanvas-node.git",
"scripts": {
"build": "tsc",
"build:doc": "typedoc && touch docs/.nojekyll",
"lint": "eslint ./src/*.ts",
"prepublishOnly": "npm run build",
"start": "tsc && node built/playcanvas-api.js",
"test": "jest"
},
"types": "built/playcanvas-api.d.ts"
}