This repository has been archived by the owner on Nov 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
68 lines (68 loc) · 1.69 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
{
"name": "@galacean/engine-miniprogram-adapter",
"version": "0.0.16",
"description": "adapter of miniprogram",
"packageManager": "[email protected]",
"keywords": [
"webgl",
"adapter",
"miniprogram"
],
"authors": [
"kevin.hs <[email protected]>"
],
"types": "types/index.d.ts",
"scripts": {
"test": "jest",
"test-cov": "jest --coverage",
"dev": "rollup -cw",
"watch": "rollup -cw",
"build": "rollup -c",
"ci": "npm run lint && npm run test-cov",
"lint": "eslint src --fix --ext .ts,.tsx",
"b:types": "tsc --emitDeclarationOnly"
},
"files": [
"dist/**/*"
],
"main": "dist/miniprogram.js",
"devDependencies": {
"@babel/core": "^7.x",
"@babel/plugin-proposal-class-properties": "^7.x",
"@babel/plugin-proposal-object-rest-spread": "^7.x",
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.3.3",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.x",
"@types/jest": "^24.0.21",
"@typescript-eslint/eslint-plugin": "^3.x",
"@typescript-eslint/parser": "^3.x",
"babel-jest": "^24.8.0",
"eslint": "^7.x",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^2.2.0",
"jest": "^24.8.0",
"lint-staged": "^10.0.0-1",
"prettier": "^2.0.0",
"rollup": "^2",
"typescript": "^3.9.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"git add ."
]
},
"ci": {
"type": "gitlab",
"version": "alinode=3.11.7"
}
}