-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 978 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
{
"name": "ampersand-class-extend",
"description": "JS class extension tool for enabling easily extending prototype with multiple objects.",
"version": "2.0.0",
"author": "Henrik Joreteg <[email protected]>",
"files": [
"ampersand-class-extend.js",
"NOTICE.md"
],
"bugs": {
"url": "https://github.com/ampersandjs/ampersand-class-extend/issues"
},
"dependencies": {
"lodash": "^4.11.1"
},
"homepage": "https://github.com/ampersandjs/ampersand-class-extend",
"keywords": [
"ampersand",
"inheritance",
"class"
],
"license": "MIT",
"main": "ampersand-class-extend.js",
"repository": {
"type": "git",
"url": "git://github.com/ampersandjs/ampersand-class-extend"
},
"scripts": {
"start": "zuul --local -- test/main.js",
"test": "zuul --phantom -- test/main.js",
"test-ci": "zuul -- test/main.js"
},
"devDependencies": {
"phantomjs": "^2.1.7",
"tape": "^4.4.0",
"zuul": "^3.9.0"
}
}