forked from Palpiteros/muscle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1011 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": "muscle",
"description": "A layer on top of Backbonejs to bring more control to views and a better integration between views and models/collections",
"version": "0.1.3",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/lucasfs7/muscle.git"
},
"keywords": ["browser", "server", "client", "backbone", "view", "browserify"],
"dependencies": {
"LiveScript": "^1.2.0",
"backbone": "^1.1.2",
"browserify": "^4.1.8",
"jquery": "^2.1.1",
"liveify": "^0.4.0",
"phantomjs": "^1.9.7-8",
"tape": "^2.13.2",
"testling": "^1.6.1",
"underscore": "^1.6.0"
},
"testling": {
"browsers": [
"ie/8..latest",
"firefox/latest",
"chrome/latest",
"safari/5..latest",
"opera/11",
"opera/next"
]
},
"author": "Lucas F. Souza",
"main": "lib/index.js",
"scripts": {
"start": "lsc --no-header -cbo lib/ src/",
"test": "npm start && browserify -t liveify test/*.ls | testling"
}
}