-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
48 lines (48 loc) · 1.73 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
{
"name": "bone.io",
"version": "0.9.0",
"main": "./switch.js",
"browser": "./bone.io.js",
"description": "Bone.io is a lightweight framework for building high performance Realtime Single Page Apps.",
"dependencies": {
"async": "*",
"connect": "*"
},
"keywords": ["realtime", "web", "html5", "framework", "bone.io", "bone man", "skeleton", "mobile", "socket.io", "badass"],
"homepage": "http://bone.io",
"author": "Brad Carleton <brad@techpines.com>",
"repository": "git://github.com/techpines/bone.io",
"contributors": [{
"name": "Brad Carleton",
"email": "brad@techpines.com",
"url": "http://www.techpines.com"
}, {
"name": "Benjamin Adams",
"email": "Armastevs@gmail.com",
"url": "http://dudelol.com"
}, {
"name": "Justin Nguyen",
"email": "theamazingjustin@gmail.com"
}],
"devDependencies": {
"express": "*",
"coffee-script": "1.6.2",
"socket.io": "*",
"grunt-contrib-coffee": "*",
"grunt-contrib-uglify": "*",
"grunt-contrib-watch": "*",
"grunt-cli":"*",
"mocha":"1.9.0",
"chai":"*",
"zombie":"1.4.1",
"underscore":"*"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha test/test.coffee",
"build": "./node_modules/grunt-cli/bin/grunt --gruntfile ./grunt.coffee",
"dev": "./node_modules/grunt-cli/bin/grunt --gruntfile ./grunt.coffee dev",
"compile": "./node_modules/coffee-script/bin/coffee -o compiled/ -c lib/",
"prepublish": "echo $(pwd) > /tmp/.pwd; ./node_modules/coffee-script/bin/coffee -o compiled/ -c lib/;",
"postpublish": "rm -rf $(cat /tmp/.pwd)/compiled"
}
}