-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.43 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
{
"name": "docpad-plugin-polyglot",
"version": "2.1.2",
"description": "DocPad plugin for multilingual websites",
"homepage": "https://github.com/danguilherme/docpad-plugin-polyglot",
"license": "MIT",
"keywords": [
"docpad",
"docpad-plugin",
"i18n",
"internationalization",
"multilanguage"
],
"author": "Guilherme Ventura <guilhermeventura2@gmail.com> (http://danguilherme.github.io/)",
"maintainers": [
"Guilherme Ventura <guilhermeventura2@gmail.com> (http://danguilherme.github.io/)"
],
"contributors": [
"Guilherme Ventura <guilhermeventura2@gmail.com> (http://danguilherme.github.io/)",
"Benjamin Lupton (http://balupton.com)",
"Michael Duane Mooring <Mike@mdm.cc> (http://mdm.cc)",
"Rob Loach <robloach@gmail.com> (http://robloach.net)",
"vsopvsop (https://github.com/vsopvsop)"
],
"bugs": {
"url": "https://github.com/danguilherme/docpad-plugin-polyglot/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/danguilherme/docpad-plugin-polyglot.git"
},
"engines": {
"node": ">=0.10"
},
"editions": [
{
"description": "Source + CoffeeScript + Require",
"directory": "source",
"entry": "polyglot.plugin.coffee",
"syntaxes": [
"coffeescript",
"require"
]
},
{
"description": "CoffeeScript Compiled + ES5 + Require",
"directory": "es5",
"entry": "polyglot.plugin.js",
"syntaxes": [
"javascript",
"es5",
"require"
]
}
],
"main": "es5/polyglot.plugin.js",
"dependencies": {
"moment": "^2.18.1"
},
"devDependencies": {
"coffee-script": "^1.12.4",
"coffeelint": "^1.16.0",
"docpad": "^6.79.4",
"projectz": "^1.3.2"
},
"peerDependencies": {
"docpad": "6"
},
"scripts": {
"our:setup": "npm run our:setup:npm && npm run our:setup:docpad",
"our:setup:npm": "npm install",
"our:setup:docpad": "bash ./docpad-setup.sh",
"our:clean": "rm -Rf ./docs ./es2015 ./es5 ./out",
"our:compile": "npm run our:compile:coffee",
"our:compile:coffee": "coffee -bco ./es5 ./source",
"our:compile:coffee:watch": "coffee -bco ./es5 -w ./source",
"our:meta": "npm run our:meta:projectz",
"our:meta:projectz": "projectz compile",
"our:verify": "npm run our:verify:coffeelint",
"our:verify:coffeelint": "coffeelint ./source",
"our:test": "npm run our:verify && npm test",
"our:release": "npm run our:release:prepare && npm run our:release:check && npm run our:release:tag && npm run our:release:push",
"our:release:prepare": "npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta",
"our:release:check": "npm run our:release:check:changelog && npm run our:release:check:dirty",
"our:release:check:changelog": "cat ./HISTORY.md | grep v%npm_package_version% || (echo add a changelog entry for v%npm_package_version% && exit -1)",
"our:release:check:dirty": "git diff --exit-code",
"our:release:tag": "git tag v%npm_package_version% -am \"- Create some documentation\n- Change document front matter dictionary from `multilanguage` to `translations`\"",
"our:release:push": "git push origin master && git push origin --tags",
"test": "node --harmony es5/polyglot.test.js --joe-reporter=console",
"develop": "npm run our:compile:coffee:watch"
},
"badges": {
"list": [
"npmversion",
"npmdownloads",
"daviddm",
"daviddmdev"
]
}
}