-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.15 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
47
48
{
"name": "@dashkite/scan",
"version": "0.8.19",
"description": "State-machine scanner library for JavaScript",
"keywords": [
"scanner",
"lexer"
],
"homepage": "https://github.com/dashkite/scan#readme",
"bugs": {
"url": "https://github.com/dashkite/scan/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashkite/scan.git"
},
"license": "SEE LICENSE IN LICENSE.md",
"author": "Dan Yoder",
"exports": {
".": {
"browser": "./build/browser/src/index.js",
"node": "./build/node/src/index.js"
}
},
"main": "build/node/src/index.js",
"files": [
"build/browser/src",
"build/node/src"
],
"scripts": {
"test": "genie test",
"build": "genie build",
"release": "genie release"
},
"devDependencies": {
"@dashkite/amen": "^0.5.0",
"@dashkite/amen-console": "^0.4.0",
"@dashkite/assert": "^0.3.0",
"@dashkite/genie": "^0.20.14",
"@dashkite/genie-clean": "^0.9.0",
"@dashkite/genie-coffee": "^0.9.0",
"@dashkite/genie-module": "^0.5.42",
"@dashkite/genie-release": "^0.5.0"
},
"dependencies": {
"@dashkite/lru-cache": "^0.3.0"
}
}