-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.62 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
126
127
{
"name": "docpad-plugin-schema",
"version": "2.7.0",
"description": "Lets you attach JSON schema to your collection",
"homepage": "http://docpad.org/plugin/schema",
"license": "MIT",
"keywords": [
"docpad",
"docpad-plugin",
"schema",
"json-schema"
],
"badges": {
"list": [
"travisci",
"npmversion",
"npmdownloads",
"daviddm",
"daviddmdev",
"---",
"slackin",
"patreon",
"gratipay",
"flattr",
"paypal",
"bitcoin",
"wishlist"
],
"config": {
"patreonUsername": "bevry",
"gratipayUsername": "bevry",
"flattrUsername": "balupton",
"paypalURL": "https://bevry.me/paypal",
"bitcoinURL": "https://bevry.me/bitcoin",
"wishlistURL": "https://bevry.me/wishlist",
"slackinURL": "https://slack.bevry.me"
}
},
"author": "2016+ Bevry Pty Ltd <[email protected]> (http://bevry.me)",
"maintainers": [
"Sebastian Domagała (https://github.com/sdomagala)"
],
"contributors": [
"Sebastian Domagała (https://github.com/sdomagala)"
],
"bugs": {
"url": "https://github.com/docpad/docpad-plugin-schema/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/sdomagala/docpad-plugin-schema.git"
},
"engines": {
"node": ">=0.12",
"docpad": ">=6.x"
},
"editions": [
{
"description": "Source + ESNext + Import + Flow Type Comments",
"directory": "source",
"entry": "source/index.js",
"syntaxes": [
"javascript",
"esnext",
"import",
"defaults",
"const",
"let",
"flow type comments"
]
},
{
"description": "Babel Compiled + ES2015 + Require",
"directory": "es2015",
"entry": "es2015/index.js",
"syntaxes": [
"javascript",
"es2015",
"require"
]
}
],
"main": "index.js",
"browser": "index.js",
"scripts": {
"setup": "npm install",
"clean": "rm -Rf ./docs ./es2015",
"compile": "npm run compile:es2015",
"compile:es2015": "babel ./source --out-dir ./es2015 --presets es2015 --plugins add-module-exports",
"meta": "npm run meta:docs && npm run meta:projectz",
"meta:docs": "documentation build -f html -g source/**.js -o docs",
"meta:projectz": "projectz compile",
"prepare": "git checkout master && npm run compile && npm run test && npm run meta",
"release": "npm run prepare && npm run release:publish && npm run release:tag && npm run release:push",
"release:publish": "npm publish",
"release:tag": "git tag -a v$npm_package_version -m v$npm_package_version",
"release:bump-version": "npm version $VERSION_BUMP -f --no-git-tag-version -m 'Upgraded to %s version'",
"release:push": "git add package.json && git commit -m 'CI' && git push https://$GIT_TOKEN:@github.com/$TRAVIS_REPO_SLUG master && git push https://$GIT_TOKEN:@github.com/$TRAVIS_REPO_SLUG --tags",
"pretest": "npm run test:eslint",
"test:eslint": "eslint ./source",
"test:flow": "flow check",
"test": "echo please pass"
},
"dependencies": {
"editions": "^1.1.1",
"jsonschema": "^1.1.0"
},
"devDependencies": {
"assert-helpers": "^4.1.0",
"babel-cli": "^6.6.5",
"babel-eslint": "^6.0.2",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.6.0",
"docpad": "^6.78.4",
"documentation": "^4.0.0-beta",
"editions": "^1.1.1",
"eslint": "^2.3.0",
"eslint-plugin-babel": "^3.1.0",
"flow-bin": "^0.22.1",
"projectz": "^1.0.9",
"joe": "^1.6.0",
"joe-reporter-console": "^1.2.1"
},
"peerDependencies": {
"docpad": "6"
}
}