-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.29 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.29 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@akashic/engine-files",
"version": "3.13.4",
"description": "A library that manages versions of libraries related to Akashic Engine",
"main": "index.js",
"scripts": {
"prepare": "npm run build",
"build": "rollup -c",
"update-changelog": "node scripts/updateChangelog.js",
"update-expected": "ts-node scripts/updateExpected.ts",
"test": "run-p test:*",
"test:reftest": "jest",
"test:md": "remark ./*.md --frail --no-stdout --quiet --rc-path ./.remarkrc"
},
"keywords": [],
"author": "DWANGO Co., Ltd.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/akashic-games/engine-files.git"
},
"files": [
"src",
"dist",
"index.js",
"index.d.ts"
],
"publishConfig": {
"@akashic:registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@akashic/akashic-engine": "3.21.3",
"@akashic/amflow": "3.3.0",
"@akashic/amflow-util": "1.5.0",
"@akashic/game-configuration": "2.5.0",
"@akashic/game-driver": "2.26.0",
"@akashic/pdi-browser": "2.10.5",
"@akashic/pdi-common-impl": "1.4.1",
"@akashic/pdi-types": "1.14.0",
"@akashic/playlog": "3.4.1",
"@akashic/trigger": "2.1.3"
},
"devDependencies": {
"@akashic/headless-akashic": "^4.7.0",
"@babel/cli": "^7.17.10",
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.2.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^12.0.0",
"@types/jest": "^29.0.0",
"@types/pixelmatch": "^5.2.4",
"@types/pngjs": "^6.0.1",
"canvas": "^3.0.0",
"jest": "^29.0.0",
"npm-check-updates": "^17.0.0",
"npm-run-all": "^4.1.5",
"pixelmatch": "^5.3.0",
"pngjs": "^7.0.0",
"remark-cli": "^12.0.0",
"remark-lint": "^10.0.0",
"rollup": "^3.28.0",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-visualizer": "^5.9.2",
"ts-jest": "^29.0.0",
"ts-node": "^10.7.0",
"typescript": "^5.0.0"
},
"jest": {
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
},
"testMatch": [
"<rootDir>/tests/*.spec.ts"
],
"testTimeout": 10000
}
}