-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "unity-asset-store-api",
"version": "1.0.2",
"description": "API Client for Unity's Asset Store",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint \"src/**/*.ts\"",
"test": "tsc",
"preversion": "npm run test && npm run lint",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mukaschultze/unity-asset-store-api.git"
},
"keywords": [
"Unity",
"Asset",
"Store",
"API",
"Client"
],
"author": "Muka Schultze",
"license": "MIT",
"bugs": {
"url": "https://github.com/mukaschultze/unity-asset-store-api/issues"
},
"homepage": "https://github.com/mukaschultze/unity-asset-store-api#readme",
"dependencies": {
"request": "^2.88.0",
"request-promise-native": "^1.0.7"
},
"devDependencies": {
"@types/request-promise-native": "^1.0.17",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
}
}