forked from js-kyle/connect-assets
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.68 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": "connect-assets",
"version": "5.3.1",
"author": "Andrew Dunkman <[email protected]>",
"description": "A Rails-like asset pipeline for Connect",
"license": "MIT",
"contributors": [
{
"name": "Trevor Burnham",
"email": "[email protected]",
"url": "http://trevorburnham.com/"
},
{
"name": "Andrew Dunkman",
"email": "[email protected]"
},
{
"name": "Dusty Burwell",
"email": "[email protected]"
},
{
"name": "Blake VanLandingham",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/adunkman/connect-assets.git"
},
"engines": {
"node": ">=0.10.0"
},
"main": "index.js",
"bin": {
"connect-assets": "bin/connect-assets"
},
"dependencies": {
"argparse": "1.0.7",
"csswring": "5.0.0",
"mime": "1.3.4",
"mincer": "1.4.1",
"postcss": "5.0.21",
"uglify-js": "2.6.2"
},
"devDependencies": {
"mocha": "2.5.3",
"blanket": "1.2.3",
"expect.js": "0.3.1",
"travis-cov": "0.2.5",
"connect": "3.4.1",
"ejs": "2.4.2"
},
"config": {
"travis-cov": {
"threshold": 95
},
"blanket": {
"pattern": "//^((?!/node_modules/)(?!/test/).)*$/ig"
}
},
"scripts": {
"test": "npm run test-unit && npm run test-cov",
"test-unit": "./node_modules/.bin/mocha --reporter spec",
"test-cov": "./node_modules/.bin/mocha --require blanket --reporter travis-cov",
"test-watch": "./node_modules/.bin/mocha --reporter min --watch",
"test-cov-report": "./node_modules/.bin/mocha --require blanket --reporter html-cov > coverage.html && open coverage.html"
}
}