-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.48 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
{
"name": "xactor-mapped-behaviors",
"version": "1.1.2",
"license": "MIT",
"sideEffects": false,
"description": "Declarative mapping of behaviors for xactor",
"author": {
"name": "Austin Golding",
"email": "[email protected]"
},
"keywords": [
"xactor",
"actor model",
"xstate"
],
"repository": {
"type": "git",
"url": "https://github.com/GoldingAustin/xactor-mapped-behaviors"
},
"source": "src/index.ts",
"module": "dist/index.modern.module.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "microbundle watch",
"build": "microbundle --compress",
"test": "jest --config=jest.json",
"lint": "eslint src",
"format": "prettier --write './**/*.ts'"
},
"peerDependencies": {
"xactor": "^0.3"
},
"peerDependenciesMeta": {
"xactor": {
"optional": false
}
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.6.0",
"jest": "^27.4.5",
"microbundle": "^0.14.2",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4",
"xactor": "^0.3.1"
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2,
"semi": true,
"endOfLine": "lf"
},
"packageManager": "[email protected]"
}