-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.35 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
{
"name": "tam",
"version": "0.4.7",
"description": "Tam is the Assets Manager for you.",
"main": "index.js",
"bin": "./bin/tam.js",
"repository": {
"type": "git",
"url": "https://github.com/arrowrowe/tam.git"
},
"author": "arrowrowe",
"license": "MIT",
"bugs": {
"url": "https://github.com/arrowrowe/tam/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/arrowrowe/tam",
"devDependencies": {
"chai": "3.5.0",
"eslint": "3.6.0",
"ghooks": "1.3.2",
"istanbul": "0.4.5",
"jscs": "3.0.3",
"mocha": "3.0.2",
"sinon": "1.17.6"
},
"scripts": {
"lint": "eslint .",
"jscs": "jscs .",
"check": "npm run lint && npm run jscs",
"pretest": "node test/fixture-init.js",
"test": "istanbul cover _mocha 'test/**/*-spec.js' -- -R spec && istanbul check-coverage --statement 100 --branch 100 --function 100",
"posttest": "node test/fixture-clean.js",
"ct": "npm run check && npm test"
},
"config": {
"ghooks": {
"pre-commit": "npm run ct"
}
},
"dependencies": {
"chalk": "1.1.3",
"clean-css": "3.4.19",
"clone": "^1.0",
"command-line-args": "2.1.6",
"fs-extra": "0.30.0",
"glob": "7.1.0",
"hash-file": "3.0.0",
"log4js": "0.6.38",
"node-sass": "^3.4",
"strip-json-comments": "2.0.1",
"uglify-js": "2.7.3"
}
}