forked from y-lohse/inkjs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.85 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
{
"name": "inkjs",
"version": "2.1.0",
"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.18.13",
"@babel/preset-env": "7.18.10",
"@types/jest": "26.0.24",
"@typescript-eslint/eslint-plugin": "4.28.5",
"@typescript-eslint/eslint-plugin-tslint": "4.28.5",
"@typescript-eslint/parser": "4.28.5",
"eslint": "7.32.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"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.7.1",
"remap-istanbul": "0.13.0",
"rollup": "2.71.1",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-node-resolve": "13.3.0",
"rollup-plugin-sourcemaps": "0.6.3",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "0.31.2",
"ts-jest": "26.5.6",
"ts-node": "10.5.0",
"tslint": "6.1.3",
"typescript": "4.3.5"
}
}