-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.57 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": "directory-metagen",
"version": "1.6.3",
"description": "Generates directory meta files for things such as including entire directories in requirejs",
"main": "index.js",
"bin": {
"metagen": "./cli.js"
},
"dependencies": {
"bluebird": "^3.5.0",
"chokidar": "^2.0.0",
"dashdash": "^1.14.1",
"js-beautify": "^1.6.14",
"lodash": "^4.17.3",
"recursive-readdir": "^2.1.1"
},
"devDependencies": {
"chokidar-cli": "^1.2.0",
"codacy-coverage": "^2.0.1",
"codeclimate-test-reporter": "^0.5.0",
"coveralls": "^3.0.0",
"duti": "latest",
"mocha": "^5.0.0",
"mocha-lcov-reporter": "^1.2.0",
"mock-fs": "^4.0.0",
"nyc": "^11.0.2",
"standard": "^11.0.0",
"standard-json": "^1.0.2"
},
"scripts": {
"danger": "duti",
"lint": "./node_modules/.bin/standard",
"lint:ci": "standard | standard-json > lint-results.json",
"lint-fix": "./node_modules/.bin/standard --fix",
"test": "mocha",
"test:watch": "chokidar 'index.js' 'test/*.js' -c 'npm t'",
"coverage": "nyc node_modules/.bin/mocha test",
"cicoverage": "nyc --reporter=lcov mocha test --reporter json > test-results.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartprocure/directory-metagen.git"
},
"keywords": [
"requirejs",
"requirejs-metagen"
],
"author": "Samuel Greene <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartprocure/directory-metagen/issues"
},
"homepage": "https://github.com/smartprocure/directory-metagen#readme"
}