forked from pckg-io/scxml-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.55 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.55 KB
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
{
"name": "scxml-ts",
"version": "0.1.4",
"description": "TypeScript implementation of the W3C SCXML 1.0 data model, parser, serializer, and utilities.",
"author": "Sam Chapman",
"repository": {
"type": "git",
"url": "git+https://github.com/pckg-io/scxml-ts.git"
},
"bugs": {
"url": "https://github.com/pckg-io/scxml-ts/issues"
},
"homepage": "https://github.com/pckg-io/scxml-ts#readme",
"files": [
"dist"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"test": "jest",
"lint": "eslint './src/**/*.ts' './tests/**/*.ts'",
"lint:fix": "eslint './src/**/*.ts' './tests/**/*.ts' --fix",
"prepublishOnly": "rm -rf dist && npm run lint && npm test && npm run build",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"keywords": [
"scxml",
"state machine",
"typescript"
],
"license": "MIT",
"dependencies": {
"@xmldom/xmldom": "^0.8.10"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.4.0"
}
}