-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
89 lines (89 loc) · 2.42 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@akashic/headless-driver",
"version": "2.15.9",
"description": "A library to execute contents using Akashic Engine headlessly",
"main": "lib/index.js",
"author": "DWANGO Co., Ltd.",
"license": "MIT",
"scripts": {
"prepare": "npm run build",
"build": "rimraf ./lib && npm run format && tsc",
"format": "run-s format:*",
"format:prettier": "prettier --write \"src/**/*.ts\"",
"format:eslint": "eslint \"src/**/*.ts\" --fix",
"test": "run-s test:*",
"test:jest": "jest",
"test:eslint": "eslint \"src/**/*.ts\"",
"test:remark": "remark . --frail --no-stdout --quiet"
},
"publishConfig": {
"access": "public",
"@akashic:registry": "https://registry.npmjs.org/"
},
"files": [
"lib"
],
"dependencies": {
"@akashic/amflow": "^3.2.0",
"@akashic/playlog": "^3.2.0",
"@akashic/trigger": "^2.0.0",
"engine-files-v1": "npm:@akashic/engine-files@1.4.0",
"engine-files-v2": "npm:@akashic/engine-files@2.4.0",
"engine-files-v3": "npm:@akashic/engine-files@3.9.4",
"js-sha256": "^0.11.0",
"lodash.clonedeep": "^4.5.0",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@akashic/eslint-config": "^2.0.0",
"@akashic/remark-preset-lint": "^0.1.2",
"@types/jest": "^29.1.1",
"@types/lodash.clonedeep": "^4.5.7",
"@types/node": "^18.7.23",
"@types/node-fetch": "^2.6.2",
"@types/pixelmatch": "^5.2.4",
"@types/pngjs": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"canvas": "^2.11.2",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"get-port": "^5.1.1",
"image-size": "^1.0.2",
"jest": "^29.1.2",
"npm-run-all": "^4.1.5",
"pixelmatch": "^5.3.0",
"pngjs": "^7.0.0",
"prettier": "^3.0.0",
"remark-cli": "^12.0.0",
"rimraf": "^6.0.0",
"serve-handler": "^6.1.3",
"ts-jest": "^29.0.3",
"typescript": "^5.0.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
},
"testMatch": [
"<rootDir>/src/**/*.spec.ts"
],
"globalSetup": "<rootDir>/src/__tests__/setup.ts",
"globalTeardown": "<rootDir>/src/__tests__/teardown.ts"
},
"remarkConfig": {
"plugins": [
"@akashic/remark-preset-lint"
]
}
}