-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.47 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
{
"name": "@dashkite/sky-api-description",
"version": "0.0.0",
"description": "Convenience wrapper for for Sky APIs",
"exports": {
".": {
"browser": "./build/browser/src/index.js",
"node": "./build/node/src/index.js"
},
"./*": {
"browser": "./build/browser/src/*.js",
"node": "./build/node/src/*.js"
},
"./schema": {
"browser": "./build/browser/src/schema.js",
"node": "./build/node/src/schema.js"
}
},
"main": "build/node/src/index.js",
"files": [
"build/node/src"
],
"scripts": {
"test": "genie test",
"build": "genie build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashkite/sky-api-description.git"
},
"keywords": [],
"contributors": [
{
"name": "Dan Yoder",
"email": "[email protected]"
}
],
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/dashkite/sky-api-description/issues"
},
"homepage": "https://github.com/dashkite/sky-api-description#readme",
"devDependencies": {
"@dashkite/amen": "^0.1.2",
"@dashkite/amen-console": "^0.0.2",
"@dashkite/assert": "^0.1.4",
"@dashkite/genie": "^0.5.6",
"@dashkite/genie-modules": "link:../genie-modules",
"@dashkite/genie-presets": "^0.6.2"
},
"dependencies": {
"@dashkite/joy": "^0.3.16",
"@dashkite/maeve": "link:../maeve",
"@dashkite/media-type": "link:../media-type",
"@dashkite/url-codex": "link:../url-codex"
}
}