-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
42 lines (42 loc) · 978 Bytes
/
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
{
"name": "dfa",
"version": "1.2.0",
"description": "A state machine compiler",
"main": "index.js",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"mocha": "^3.1.0",
"pegjs": "^0.10.0",
"rollup": "^1.5.0",
"rollup-plugin-babel": "^4.0.1",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-local-resolve": "^1.0.7"
},
"scripts": {
"test": "mocha --require @babel/register",
"prepublish": "make"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/devongovett/dfa.git"
},
"keywords": [
"state",
"machine",
"compiler"
],
"author": "Devon Govett <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/devongovett/dfa/issues"
},
"homepage": "https://github.com/devongovett/dfa#readme",
"files": [
"index.js",
"index.js.map",
"compile.js",
"compile.js.map"
]
}