This repository has been archived by the owner on Nov 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·68 lines (68 loc) · 1.64 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
{
"name": "asyncmachine",
"version": "3.4.1",
"description": "Relational State Machine",
"keywords": [
"async",
"statemachine",
"eventemitter",
"states",
"transition",
"eventloop",
"declarative",
"relational",
"aop",
"fsm",
"actor-model",
"dependency-graph"
],
"author": "Tobiasz Cudnik <[email protected]>",
"license": "MIT",
"url": "https://github.com/TobiaszCudnik/asyncmachine",
"repository": {
"type": "git",
"url": "https://github.com/TobiaszCudnik/asyncmachine.git"
},
"devDependencies": {
"chai": "^3.5.0",
"core-js": "^2.4.1",
"dts-bundle": "^0.7.3",
"mocha": "^5.2.0",
"prettier": "^1.12.1",
"replace-in-file": "^3.4.0",
"rollup": "^0.51.8",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-execute": "^1.0.0",
"rollup-plugin-node-resolve": "^3.0.3",
"rollup-plugin-typescript2": "^0.11.1",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.3.1",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"source-map-support": "^0.5.6",
"typedoc": "^0.11.1",
"typescript": "^2.8",
"uglify-es": "^3.3.9"
},
"scripts": {
"build": "make build",
"test": "make test-build; make test",
"prepare": "make build"
},
"main": "build/asyncmachine.js",
"types": "build/asyncmachine.d.ts",
"module": "build/asyncmachine.es6.js",
"browser": "build/asyncmachine.umd.js",
"dependencies": {
"@types/mocha": "^7.0.2",
"commander": "^2.14.1",
"simple-random-id": "^1.0.1"
},
"bin": {
"am-types": "./bin/am-types.js"
},
"prettier": {
"singleQuote": true,
"semi": false
}
}