-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.95 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": "adima",
"version": "0.0.5",
"description": "Amidakuji on the Web",
"keywords": [
"Amidakuji",
"Ghost Leg",
"lottery"
],
"main": "./dist/",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"esbuild:lib": "ts-node -P ./script/tsconfig.json ./script/build.ts",
"build:lib": "tsc -p ./src/tsconfig.json --emitDeclarationOnly && npm run esbuild:lib",
"watch:lib": "chokidar \"src/**/*\" -c \"npm run build:lib\" --initial --debounce 5000",
"esbuild:demo": "ts-node -P ./script/tsconfig.json ./script/build.ts --entryPoints demo/src/index.ts --outdir demo/build",
"build:demo": "tsc -p ./demo/tsconfig.json --noEmit && npm run esbuild:demo",
"watch:demo": "chokidar \"demo/src/**/*\" \"demo/*.{html,css}\" -c \"npm run build:demo\" --initial --debounce 5000",
"build": "npm run build:lib && npm run build:demo",
"serve": "ts-node -P ./script/tsconfig.json ./script/server.ts",
"start": "concurrently -p '{time} {name}' -t 'HH:mm:ss.SSS' -c green,yellow,blue npm:serve npm:watch:lib npm:watch:demo",
"test": "jest",
"test:upd": "npm run test -- -u",
"cov": "npm run test -- --coverage",
"cov:upd": "npm run cov -- -u",
"docgen": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kena0ki/adima.git"
},
"author": "@kena0ki",
"license": "MIT",
"bugs": {
"url": "https://github.com/kena0ki/adima/issues"
},
"homepage": "https://github.com/kena0ki/adima#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"chokidar-cli": "^2.1.0",
"concurrently": "^5.3.0",
"esbuild": "^0.8.40",
"eslint": "^7.19.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.0",
"ts-node": "^9.1.1",
"typedoc": "^0.20.20",
"typescript": "^4.1.3",
"yargs": "^16.2.0"
}
}