forked from ayecue/text-mesh-transformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.9 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
{
"name": "eco-text-mesh-transformer",
"version": "1.3.3",
"description": "Transformer for Eco's TextMeshPro tags",
"homepage": "https://github.com/StrangeLoopGames/EcoTextMeshProTransformer",
"main": "dist/index",
"typings": "dist/index",
"repository": {
"type": "git",
"url": "git@github.com:StrangeLoopGames/EcoTextMeshProTransformer.git"
},
"author": {
"name": "Strange Loop Games",
"email": "support@strangeloopgames.com"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/StrangeLoopGames/EcoTextMeshProTransformer/blob/master/LICENSE-MIT"
}
],
"bugs": {
"url": "https://github.com/StrangeLoopGames/EcoTextMeshProTransformer/issues"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run clean && tsc -p .",
"watch": "tsc -w -p .",
"clean": "rm -rf dist",
"test": "jest ./tests",
"lint": "eslint ./src/**/*.ts",
"lint:fix": "eslint --fix ./src/**/*.ts"
},
"directories": {},
"keywords": [],
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^17.0.0",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"ansi-styles": "^6.2.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.4.5",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}