-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.08 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
{
"name": "@ficusjs/finite-state-machine",
"version": "1.0.1",
"description": "Finite State Machine in TypeScript",
"type": "module",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:ts": "rollup -i src/index.ts -o dist/index.mjs -f es -p \"typescript={}\" -p \"terser={}\" -p \"filesize={}\"",
"build:types": "tsc --project tsconfig.build.json --declaration --emitDeclarationOnly --outDir tmp && rollup -i tmp/index.d.ts -o dist/index.d.ts -f es -p \"dts={}\"",
"lint": "ts-standard && tsc -p tsconfig.eslint.json --noEmit",
"lint:fix": "ts-standard --fix",
"test": "jest",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ficusjs/ficusjs-finite-state-machine.git"
},
"keywords": [
"ficusjs",
"frontend",
"state",
"state-machine",
"xstate"
],
"author": "Matt Levy",
"license": "MIT",
"bugs": {
"url": "https://github.com/ficusjs/ficusjs-finite-state-machine/issues"
},
"homepage": "https://github.com/ficusjs/ficusjs-finite-state-machine#readme",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.4",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"eslint": "^8.50.0",
"eslint-config-standard-with-typescript": "^39.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"rollup": "^3.29.4",
"rollup-plugin-dts": "^6.0.2",
"rollup-plugin-filesize": "^10.0.0",
"ts-jest": "^29.1.1",
"ts-standard": "^12.0.2",
"typescript": "^5.2.2"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.(ts)$": [
"ts-jest",
{
"tsconfig": "tsconfig.eslint.json"
}
]
}
},
"exports": {
".": {
"import": "./dist/index.mjs"
}
}
}