forked from AsPulse/applize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.37 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
{
"name": "@aspulse/applize",
"version": "1.0.42",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"applize": "./bin/index.js"
},
"files": [
"lib"
],
"repository": "https://github.com/AsPulse/applize.git",
"author": "AsPulse <[email protected]>",
"license": "MIT",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"dependencies": {
"chokidar": "^3.5.3",
"esbuild": "0.12",
"esbuild-node-externals": "^1.4.1",
"estrella": "^1.4.1",
"google-closure-compiler": "^20220104.0.0",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
},
"devDependencies": {
"@types/google-closure-compiler": "^0.0.19",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"esbuild-plugin-d.ts": "^1.1.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.4.7",
"ts-jest": "^27.1.2"
},
"scripts": {
"lint": "prettier --write src/** && eslint --fix --max-warnings 0 src/**",
"lintCheckOnly": "prettier --check src/** && eslint --max-warnings 0 src/**",
"build": "node ./build.js",
"dev": "node ./build.js && node bin/index.js",
"dev-adm": "node ./src/client/dombuilder/develop/devLaunch.js",
"sandbox": "node sandbox/build.js && node sandbox/dist/index.js"
}
}