-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.22 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.22 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
49
50
51
52
53
{
"name": "@dashkite/katana",
"version": "0.4.8",
"description": "Stack-based composition combinators in JavaScript",
"keywords": [
"stack",
"composition",
"combinator"
],
"homepage": "https://github.com/dashkite/katana#readme",
"bugs": {
"url": "https://github.com/dashkite/katana/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashkite/katana.git"
},
"license": "SEE LICENSE IN LICENSE.md",
"author": "Dan Yoder",
"main": "build/node/src/index.js",
"main:coffee": "src/index.coffee",
"exports": {
".": {
"import": "./build/import/src/index.js",
"node": "./build/node/src/index.js"
},
"./*": {
"import": "./build/import/src/*.js",
"node": "./build/node/src/*.js"
}
},
"files": [
"build/import/src",
"build/node/src",
"src"
],
"scripts": {
"test": "genie test"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@dashkite/genie": "^0.20.4",
"@dashkite/genie-presets": "^0.1.15",
"@dashkite/masonry": "^0.10.8",
"amen": "^3.0.0",
"coffeescript": "^2.5.1",
"colors": "^1.4.0"
},
"dependencies": {
"@dashkite/joy": "^0.3.16"
}
}