This repository has been archived by the owner on Mar 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.35 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
75
76
77
78
{
"name": "xstate-pubsub",
"version": "0.0.5",
"description": "provides publish and subscribe actions for xstate, allowing machine actors to communicate with one another.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"tests",
"tsconfig.json"
],
"scripts": {
"build": "rollup --config",
"rebuild": "npm run clean:build && npm run build",
"lint": "prettier --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --write --plugin-search-dir=. .",
"test": "uvu -r ts-node/register tests",
"watch:test": "watchlist src tests -- npm run test",
"watch:build": "npm run build -- --environment NODE_ENV:development --watch",
"clean:test": "rimraf coverage",
"clean:build": "rimraf dist",
"clean:docs": "rimraf docs/**/*.md",
"clean": "concurrently 'npm:clean:*'",
"watch": "concurrently 'npm:watch:*'",
"prepublishOnly": "npm run clean && npm run lint && npm run format && npm test && npm run build && npm run docs",
"test:coverage": "c8 --include=src npm test",
"test:report": "c8 report --reporter=text-lcov > coverage.lcov",
"docs": "typedoc src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chanced/xstate-pubsub.git"
},
"keywords": [
"xstate",
"pubsub",
"state-machine"
],
"author": "chance dinkins",
"license": "MIT",
"bugs": {
"url": "https://github.com/chanced/xstate-pubsub/issues"
},
"homepage": "https://github.com/chanced/xstate-pubsub#readme",
"peerDependencies": {
"xstate": "^4.23.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.5",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"c8": "^7.8.0",
"concurrently": "^6.2.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typedoc": "^0.21.6",
"typedoc-plugin-markdown": "^3.10.4",
"typedoc-plugin-sourcefile-url": "^1.0.6",
"typescript": "^4.3.5",
"uvu": "^0.5.1",
"watchlist": "^0.2.3"
},
"dependencies": {
"rfdc": "^1.3.0"
}
}