forked from y-lohse/inkjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.88 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
{
"name": "inkjs",
"version": "2.2.1",
"description": "A javascript port of inkle's ink scripting language (http://www.inklestudios.com/ink/)",
"main": "dist/ink-full.js",
"types": "ink.d.ts",
"scripts": {
"test": "npm run test:typescript && npm run test:javascript",
"test:typescript": "jest",
"test:javascript": "npm run test:javascript:dist && npm run test:javascript:legacy",
"test:javascript:dist": "INK_TEST=dist jest --config='jest.config.javascript.js'",
"test:javascript:legacy": "INK_TEST=legacy jest --config='jest.config.javascript.js'",
"test:compileFiles": "node src/tests/compile.js",
"build": "tsc -p ./ && rollup -c",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"watch": "tsc -p ./ && rollup -c -w",
"prepare": "npm run build"
},
"author": "Yannick Lohse",
"license": "MIT",
"browserslist": "> 0.25%, not dead",
"devDependencies": {
"@babel/core": "7.22.1",
"@babel/preset-env": "7.22.4",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-node-resolve": "13.3.0",
"@types/jest": "26.0.24",
"@types/node": "^20.2.6",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/eslint-plugin-tslint": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsdoc": "30.7.13",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "3.4.1",
"fs-extra": "9.1.0",
"glob": "7.2.3",
"jest": "26.6.3",
"jest-diff": "27.5.1",
"prettier": "2.8.8",
"remap-istanbul": "0.13.0",
"rollup": "2.79.1",
"rollup-plugin-sourcemaps": "0.6.3",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "0.34.1",
"ts-jest": "26.5.6",
"ts-node": "^10.9.1",
"tslint": "6.1.3",
"typescript": "4.9.5"
}
}