-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.05 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
{
"author": "Jackson Ray Hamilton <[email protected]>",
"description": "JSCS Spellcheck Plugin",
"name": "jscs-spellcheck",
"version": "1.0.0",
"main": "lib/index",
"homepage": "https://github.com/jscs-dev/jscs-spellcheck",
"keywords": [
"code style",
"formatter",
"lint",
"linter",
"style guide",
"validate",
"jscs",
"plugin",
"spelling",
"spellcheck"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jscs-dev/jscs-spellcheck"
},
"bugs": {
"url": "https://github.com/jscs-dev/jscs-spellcheck/issues"
},
"contributors": [
"Jackson Ray Hamilton <[email protected]>"
],
"maintainers": [
{
"name": "Jackson Ray Hamilton",
"email": "[email protected]",
"github-username": "jacksonrayhamilton",
"role": "General architecture, bug fixes, common rules"
}
],
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"lodash": "^3.7.0",
"wordlist-english": "^1.1.0"
},
"devDependencies": {
"coveralls": "^2.11.2",
"jscs": "^1.12.0",
"jshint": "^2.7.0",
"mocha": "^2.2.0",
"unit-coverage": "^3.4.0"
},
"peerDependencies": {
"jscs": ">=1.8.0 <2.0"
},
"unit-coverage": {
"common": [
"-a",
"lib",
"-a",
"test",
"-s",
"lib/**/*.js",
"-t",
"test/specs/**/*.js",
"-S",
"relative",
"-O",
"sources=lib",
"-O",
"tests=test/specs"
]
},
"scripts": {
"lint": "jshint . && jscs lib test",
"test": "npm run lint && mocha --color",
"coverage": "unit-coverage run -p common",
"coverage-html": "unit-coverage run -p common -r html -o coverage.html",
"changelog": "git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'",
"release": "npm test && npm publish",
"travis": "npm run test && unit-coverage run -p common -r lcov -o out.lcov && cat out.lcov | coveralls"
},
"files": [
"lib",
"LICENSE"
]
}