forked from ngageoint/opensphere-build-resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.66 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "opensphere-build-resolver",
"version": "5.0.2",
"description": "Resolves projects, their dependencies, plugins, and config to the correct arguments for compilation via the Google Closure Compiler, node-sass, and other tools.",
"bin": {
"os-resolve": "./resolve.js"
},
"main": "resolve.js",
"scripts": {
"test:run": "nyc _mocha -- 'test/**/*.test.js'",
"test": "mkdirp .test && npm run test:run && rimraf .test",
"lint": "eslint '**/*.js'",
"package:update": "if git diff --name-only ORIG_HEAD HEAD | grep --quiet package.json; then echo 'UPDATE: package.json changed, consider running yarn in your workspace root'; fi",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"keywords": [
"opensphere",
"build",
"closure",
"compiler",
"resolve"
],
"author": "William Wall <wwall@caci.com>",
"maintainers": [
"William Wall <wwall@caci.com>",
"Kevin Schmidt <kschmidt@caci.com>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ngageoint/opensphere-build-resolver.git"
},
"nyc": {
"lines": 1,
"statements": 1,
"branches": 1,
"functions": 1,
"exclude": [
"plugins/ice/*.js",
"plugins/gcc/options-*.js",
"plugins/gcc/require-all-template.js"
],
"include": [
"*.js",
"plugins/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"all": true,
"check-coverage": true,
"report-dir": "test/coverage"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"validate-commit-msg": {
"helpMessage": "\nPlease fix your commit message (consider using 'npm i -g commitizen'). Well-formatted commit messages allow us to automate our changelog and npm releases.\n\nExamples:\n\"fix(copy-view): Fixed an error when resolving paths for view directories\"\n\"feat(gcc): Added support for defines\"\n\nIf you have installed commitizen, try running 'git cz'."
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
},
"dependencies": {
"bluebird": "^3.4.6",
"clone": "^2.1.2",
"concat-files": "^0.1.0",
"find": "^0.2.9",
"glob": "^7.1.1",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"object.values": "^1.0.3",
"require-all": "^2.0.0",
"require-glob": "^3.2.0",
"resolve": "^1.5.0",
"rimraf": "^2.5.4",
"semver": "^5.3.0",
"underscore": "^1.8.3",
"yargs": "^11.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.8",
"@semantic-release/github": "^5.2.10",
"@semantic-release/npm": "^5.1.4",
"@semantic-release/release-notes-generator": "^7.1.4",
"chai": "^3.5.0",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.6.1",
"eslint-config-google": "^0.7.0",
"husky": "^1.3.1",
"mocha": "^3.1.2",
"nyc": "^10.0.0",
"semantic-release": "^15.13.3",
"travis-deploy-once": "^5.0.2",
"validate-commit-msg": "^2.8.2"
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg",
"post-merge": "npm run package:update",
"post-rewrite": "npm run package:update"
}
}
}