-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.57 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.57 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
57
{
"name": "@web-ui/lit-statemachine",
"version": "1.0.3",
"description": "StateMachine for Web Components, simplified integration of Xstate with LitElement as a decorator and mixin.",
"main": "lib/esm/index.js",
"module": "lib/cjs/index.js",
"types": "lib/esm/index.d.ts",
"scripts": {
"prepublishOnly": "npm run release",
"test": "echo \"no test specified\"",
"tc": "npx tsc --noEmit",
"tcw": "npm run tc -- -w",
"build-esm": "npx tsc -m ESNext --outDir lib/esm --declarationDir lib/esm",
"build-cjs": "npx tsc -m CommonJS --outDir lib/cjs --declarationDir lib/cjs",
"release": "npm run build-esm && npm run build-cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web-ui-dev/lit-statemachine.git"
},
"keywords": [
"lit-element",
"xstate",
"state machine",
"state charts"
],
"author": "dsadhanala@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/web-ui-dev/lit-statemachine/issues"
},
"homepage": "https://github.com/web-ui-dev/lit-statemachine#readme",
"dependencies": {
"lit-element": "^2.3.1",
"xstate": "^4.8.0"
},
"peerDependencies": {
"lit-element": "^2.3.1",
"xstate": "^4.8.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"lib/**/*",
"LICENSE",
"package.json",
"README.md"
]
}