forked from ngageoint/opensphere-build-resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.59 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
{
"name": "opensphere-build-resolver",
"version": "2.0.1",
"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' 'plugins/**/*.js'",
"package:update": "if git diff --name-only ORIG_HEAD HEAD | grep --quiet package.json; then npm update && npm install; fi",
"commitmsg": "validate-commit-msg",
"postmerge": "npm run package:update",
"postrewrite": "npm run package:update",
"semantic-release": "semantic-release"
},
"keywords": [
"opensphere",
"build",
"closure",
"compiler",
"resolve"
],
"author": "William Wall <[email protected]>",
"maintainers": [
"William Wall <[email protected]>",
"Kevin Schmidt <[email protected]>"
],
"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": "node_modules/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": {
"verifyConditions": [
"@semantic-release/condition-travis",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"getLastRelease": "@semantic-release/git",
"publish": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@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",
"concat-files": "^0.1.0",
"find": "^0.2.7",
"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",
"rimraf": "^2.5.4",
"semver": "^5.3.0",
"simple-grep": "0.0.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"@semantic-release/changelog": "^1.0.0",
"@semantic-release/condition-travis": "^7.1.4",
"@semantic-release/git": "^2.0.1",
"@semantic-release/github": "^3.0.1",
"@semantic-release/npm": "^2.6.1",
"chai": "^3.5.0",
"conventional-changelog-cli": "^1.2.0",
"conventional-recommended-bump": "^0.3.0",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.6.1",
"eslint-config-google": "^0.7.0",
"husky": "^0.13.3",
"mocha": "^3.1.2",
"nyc": "^10.0.0",
"semantic-release": "^11.2.0",
"validate-commit-msg": "^2.8.2"
}
}