-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
68 lines (68 loc) · 1.57 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "homefront",
"version": "3.0.0",
"description": "Object manipulation packed in a simple module.",
"main": "dist/index.js",
"typings": "homefront.d.ts",
"scripts": {
"test": "eslint index.js lib && mocha -b",
"build": "rm -rf dist && mkdir dist && buble -i index.js -o dist/index.js && buble -i lib/ -o dist/lib/",
"preversion": "npm test",
"version": "npm run build && gulp prepare-package && git add -A dist doc/CHANGELOG.md bower.json",
"postpublish": "git push upstream master && git push upstream --tags"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/SpoonX/homefront.git"
},
"keywords": [
"json",
"awesome",
"object",
"merge",
"extend",
"flatten",
"expand",
"search",
"manipulate",
"tool"
],
"author": "RWOverdijk <info@spoonx.nl>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SpoonX/homefront/issues"
},
"homepage": "https://github.com/SpoonX/homefront#readme",
"devDependencies": {
"buble": "^0.14.2",
"chai": "^3.5.0",
"eslint": "^3.9.1",
"gulp": "^3.9.1",
"gulp-conventional-changelog": "^1.1.0",
"mocha": "^3.1.2",
"spoonx-tools": "^1.0.0-0"
},
"dependencies": {
"extend": "^3.0.0"
},
"jspm": {
"jspmPackage": true,
"registry": "npm",
"main": "index",
"format": "cjs",
"directories": {
"dist": "dist"
},
"dependencies": {
"extend": "^3.0.0"
},
"peerDependencies": {
"extend": "^3.0.0"
}
},
"aurelia": {
"build": {
"resources": []
}
}
}