-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
65 lines (65 loc) · 1.52 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
{
"name": "bower-files",
"version": "4.0.4",
"main": "./index",
"description": "Pulls in dynamic list of filepaths to bower components",
"files": [
"bin",
"index.js",
"lib"
],
"bin": {
"bower-files": "bin/bower-files"
},
"scripts": {
"pretest": "npm run lint",
"test": "istanbul cover _mocha",
"posttest": "istanbul check-coverage --statements 99 --lines 99 --branches 90 --functions 100",
"lint": "standard lib bin test/*.js",
"codeclimate": "cat ./coverage/lcov.info | codeclimate-test-reporter"
},
"repository": {
"type": "git",
"url": "git://github.com/ksmithut/bower-files.git"
},
"keywords": [
"bower",
"task management"
],
"author": "ksmithut",
"license": "MIT",
"bugs": {
"url": "https://github.com/ksmithut/bower-files/issues"
},
"eslintConfig": {
"root": true,
"extends": [
"standard"
]
},
"devDependencies": {
"chai": "^4.0.1",
"codeclimate-test-reporter": "^0.5.0",
"istanbul": "^0.4.5",
"jshint": "^2.11.1",
"jshint-stylish": "^2.2.1",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.2.0",
"standard": "^14.3.4"
},
"dependencies": {
"arrify": "^1.0.1",
"bower-config": "^1.4.0",
"camelcase": "^5.0.0",
"debug": "^4.1.1",
"deprecate": "^1.0.0",
"globby": "^8.0.2",
"is-absolute": "^1.0.0",
"is-symlink-sync": "^2.0.0",
"minimatch": "^3.0.3",
"object-assign": "^4.1.0",
"read-json-sync": "^2.0.1",
"untildify": "^3.0.2",
"yargs": "^12.0.5"
}
}