-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1019 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
{
"name": "ampersand-app",
"description": "Simple instance store for managing instances without circular dependency issues in ampersand apps.",
"version": "2.0.0",
"author": "Henrik Joreteg <[email protected]>",
"bugs": {
"url": "https://github.com/ampersandjs/ampersand-app/issues"
},
"homepage": "https://github.com/ampersandjs/ampersand-app",
"keywords": [
"instance store",
"object store"
],
"license": "MIT",
"main": "ampersand-app.js",
"repository": {
"type": "git",
"url": "https://github.com/ampersandjs/ampersand-app"
},
"scripts": {
"start": "zuul --local -- test/index.js",
"test": "zuul --phantom -- test/index.js",
"test-ci": "zuul -- test/index.js"
},
"dependencies": {
"ampersand-events": "^2.0.1",
"ampersand-version": "^1.0.2",
"lodash": "^4.11.1"
},
"browserify": {
"transform": [
"ampersand-version"
]
},
"devDependencies": {
"phantomjs": "^2.1.7",
"tape": "^4.5.1",
"zuul": "^3.9.0"
}
}