-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.14 KB
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
{
"name": "ready.js",
"version": "3.1.0",
"description": "continuous javascript integration",
"keywords": [
"continuous integration",
"jslint",
"javascript",
"minifier",
"compiler",
"ci",
"uglifier"
],
"author": "dsimard <dsimard@azanka.ca> (http://github.com/dsimard)",
"bin": {
"readyjs": "./bin/ready.js"
},
"repository": {
"type": "git",
"url": "https://dsimard@github.com/dsimard/ready.js.git"
},
"scripts": {
"test": "node ./node_modules/.bin/mocha --compilers coffee:coffee-script tests/*.coffee",
"prepublish": "cake build",
"publish": "cake clean"
},
"licenses": [
{
"type": "GPLv3",
"url": "https://raw.github.com/dsimard/ready.js/master/LICENSE"
}
],
"dependencies": {
"optimist": "~0.3.1",
"colors": "~0.6.0",
"uglify-js": "~2.4.0",
"jshint": "~2.1.11",
"underscore": "~1.4.3",
"async": "~0.2.9",
"readdirp": "~ 0.3.1",
"minimatch": "~0.2.12",
"fs-extra": "~0.7.0",
"coffee-script": "~1.6.3"
},
"devDependencies": {
"mocha": "latest",
"should": "latest"
},
"engines": {
"node": ">=0.4.0"
}
}