-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1 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
{
"name": "@dashkite/amen",
"version": "0.2.2",
"description": "A simple test library for use with async functions",
"keywords": [
"test",
"asynchronous",
"promises"
],
"homepage": "https://github.com/pandastrike/amen",
"bugs": {
"url": "https://github.com/pandastrike/amen/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/pandastrike/amen.git"
},
"license": "SEE LICENSE IN LICENSE.md",
"contributors": [
{
"name": "Dan Yoder",
"email": "[email protected]"
}
],
"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"
},
"devDependencies": {
"@dashkite/genie": "^0.5.11",
"@dashkite/genie-presets": "^0.6.4",
"@dashkite/masonry": "^0.12.5",
"coffeescript": "^2.7.0"
}
}