This repository has been archived by the owner on Oct 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.23 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
{
"name": "@reduct/nitpick",
"description": "Type validators for the @reduct/component package.",
"main": "dist/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "browserify src/index.js -o dist/index.js --standalone reduct.nitpick -t [ babelify ] -p browserify-derequire",
"lint": "xo src/**/*.js",
"mocha": "export TEST=true && find ./src -name '*.spec.js' | xargs istanbul cover -x *.spec.js _mocha -- -R spec --compilers js:babel-register",
"test": "npm run lint && npm run mocha && npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/reduct/nitpick.git"
},
"keywords": [
"nitpick",
"type",
"types",
"static",
"check",
"validator"
],
"author": "reduct",
"contributors": [
{
"name": "Tyll Weiß",
"email": "[email protected]",
"url": "https://github.com/Inkdpixels/"
},
{
"name": "André König",
"email": "[email protected]",
"url": "https://github.com/akoenig/"
},
{
"name": "Wilhelm Behncke",
"url": "https://github.com/grebaldi"
}
],
"license": {
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
},
"bugs": {
"url": "https://github.com/reduct/nitpick/issues"
},
"homepage": "https://github.com/reduct/nitpick#readme",
"devDependencies": {
"@inkdpixels/commit-analyzer": "^1.0.0",
"@inkdpixels/release-notes-generator": "^1.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.1.18",
"babel-register": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"browserify-derequire": "^0.9.4",
"chai": "^3.4.1",
"istanbul": "^0.4.0",
"jsdom": "^7.0.2",
"mocha": "^2.3.3",
"semantic-release": "^4.3.5",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"xo": "^0.11.0"
},
"xo": {
"esnext": true,
"envs": [
"node",
"mocha",
"browser",
"es6"
]
},
"release": {
"analyzeCommits": "@inkdpixels/commit-analyzer",
"generateNotes": "@inkdpixels/release-notes-generator"
}
}