-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.87 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
{
"name": "@peacockproject/statemachine-parser",
"version": "6.2.0",
"description": "IOI state machine conditional parser.",
"main": "build/index-cjs.js",
"module": "build/index.js",
"types": "build/index.d.ts",
"homepage": "https://thepeacockproject.org",
"sideEffects": false,
"engines": {
"node": ">=16.3.0"
},
"directories": {
"test": "tests",
"lib": "build",
"doc": "docs"
},
"files": [
"README.md",
"build/*",
"LICENSE",
"src"
],
"keywords": [
"ioi",
"state",
"machines",
"glacier",
"modding"
],
"repository": {
"type": "git",
"url": "https://github.com/thepeacockproject/StateMachineParser"
},
"author": "The Peacock Project <[email protected]> (https://thepeacockproject.org)",
"license": "Apache-2.0",
"packageManager": "[email protected]",
"exports": {
"import": "./build/index.js",
"require": "./build/index-cjs.js"
},
"devDependencies": {
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.8",
"c8": "^10.1.2",
"c8-as-nyc": "^1.1.11",
"call-spy": "^3.0.1",
"esbuild": "^0.21.5",
"esbuild-register": "^3.5.0",
"get-package-type": "^0.1.0",
"mocha": "^10.4.0",
"prettier": "^3.3.2",
"typescript": "^5.5.2"
},
"scripts": {
"prettier": "prettier --write \"**/*.{ts,md,json,js,cjs}\"",
"build": "tsc && node build.mjs",
"prepack": "yarn build",
"test": "mocha --require esbuild-register --extension js,ts,cjs,mjs tests",
"coverage": "c8 --reporter=lcov --reporter=text-summary --exclude=.yarn yarn test"
},
"prettier": {
"semi": false,
"tabWidth": 4
},
"publishConfig": {
"access": "public"
}
}