This repository was archived by the owner on Sep 14, 2022. It is now read-only.
forked from matthewp/robot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) 路 1.32 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) 路 1.32 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
{
"name": "robot3",
"version": "0.2.20",
"description": "A function, immutable Finite State Machine library",
"main": "dist/machine.js",
"module": "machine.js",
"files": [
"dist/",
"debug.js",
"logging.js",
"machine.js",
"index.d.ts"
],
"scripts": {
"minify": "terser machine.js -m --module -o machine.min.js",
"bundlesize": "npm run minify && bundlesize --config bundlesize.json",
"server": "ws -p 1965",
"test": "node-qunit-puppeteer http://localhost:1965/test/test.html 10000",
"build": "rollup -d dist -f cjs machine.js debug.js logging.js",
"preversion": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matthewp/robot.git"
},
"keywords": [
"Finite State Machine"
],
"author": "Matthew Phillips <matthew@matthewphillips.info>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/matthewp/robot/issues"
},
"homepage": "https://github.com/matthewp/robot#readme",
"devDependencies": {
"@11ty/eleventy": "^0.11.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.6",
"bundlesize": "^0.18.1",
"local-web-server": "^4.2.1",
"markdown-it": "^9.1.0",
"markdown-it-toc-and-anchor": "^4.2.0",
"node-qunit-puppeteer": "^1.0.13",
"rollup": "^1.21.4",
"terser": "^4.3.1"
}
}