-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 959 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 959 Bytes
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
{
"name": "ampersand-dom",
"description": "Super light-weight DOM manipulation lib.",
"version": "1.5.0",
"author": "'Henrik Joreteg' <henrik@andyet.net>",
"bugs": {
"url": "https://github.com/ampersandjs/ampersand-dom/issues"
},
"devDependencies": {
"phantomjs": "^1.9.19",
"tape": "^2.13.2",
"tape-suite": "^0.2.1",
"zuul": "^3.9.0"
},
"directories": {
"test": "test"
},
"homepage": "https://github.com/ampersandjs/ampersand-dom",
"keywords": [
"dom",
"binding"
],
"license": "MIT",
"main": "ampersand-dom.js",
"repository": {
"type": "git",
"url": "git://github.com/ampersandjs/ampersand-dom"
},
"browserify": {
"transform": [
"ampersand-version"
]
},
"scripts": {
"start": "zuul --local -- test/index.js",
"test": "zuul --phantom -- test/index.js",
"test-ci": "zuul -- test/index.js"
},
"dependencies": {
"ampersand-version": "^1.0.0"
}
}