This repository has been archived by the owner on Jun 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
66 lines (66 loc) · 1.63 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
{
"name": "fruitmachine",
"title": "FruitMachine",
"description": "A lightweight component layout engine for client and server.",
"version": "1.2.2",
"homepage": "https://github.com/wilsonpage/fruitmachine",
"author": {
"name": "Wilson Page",
"email": "[email protected]",
"github": "wilsonpage"
},
"organization": "The Financial Times Limited",
"repository": {
"type": "git",
"url": "git://github.com/ftlabs/fruitmachine.git"
},
"bugs": {
"url": "https://github.com/ftlabs/fruitmachine/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ftlabs/fruitmachine/blob/master/LICENSE"
}
],
"main": "lib/index",
"engines": {
"node": "*"
},
"scripts": {
"test": "jest --coverage",
"coveralls": "cat coverage/lcov.info | coveralls",
"prepublish": "grunt"
},
"dependencies": {
"evt": "github:financial-times/ft-app-evt",
"extend": "github:financial-times/ft-app-extend",
"model": "github:financial-times/ft-app-model",
"utils": "github:financial-times/ft-app-utils"
},
"devDependencies": {
"backbone": "^1.2.0",
"coveralls": "^3.0.2",
"grunt": "^1.0.3",
"grunt-browserify": "^5.3.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-uglify": "^4.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-run": "^0.8.1",
"hogan.js": "^3.0.0",
"jest": "^23.6.0"
},
"keywords": [],
"contributors": [
{
"name": "Wilson Page",
"email": "[email protected]",
"github": "wilsonpage"
},
{
"name": "Matt Andrews",
"email": "[email protected]",
"github": "matthew-andrews"
}
]
}