forked from carloscuesta/gitmoji
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.69 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
{
"name": "scrumoji",
"version": "1.0.0",
"description": "An emoji guide for your agile communication",
"main": "index.js",
"scripts": {
"jsonvalidate": "jsonlint ./src/data/scrumojis.json -V ./src/data/schema.json",
"contributors": "curl https://api.github.com/repos/oschrenk/scrumoji/contributors?page=1 -o ./src/data/contributors-1.json && curl https://api.github.com/repos/oschrenk/scrumoji/contributors?page=2 -o ./src/data/contributors-2.json && jq -s '.[0] + .[1]' ./src/data/contributors-1.json ./src/data/contributors-2.json > ./src/data/contributors.json",
"build": "gulp build",
"deploy": "gulp deploy",
"start": "npm run contributors",
"test": "npm run jsonvalidate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oschrenk/scrumoji.git"
},
"author": "Oliver Schrenk",
"license": "MIT",
"bugs": {
"url": "https://github.com/oschrenk/scrumoji/issues"
},
"pugLintConfig": {
"disallowHtmlText": true,
"disallowDuplicateAttributes": true,
"disallowClassAttributeWithStaticValue": true,
"disallowIdAttributeWithStaticValue": true,
"requireLowerCaseAttributes": true
},
"babel": {
"presets": [
"es2015"
]
},
"homepage": "https://github.com/oschrenk/scrumoji#readme",
"dependencies": {
"async": "^2.1.2",
"pdfkit": "^0.8.0",
"request": "^2.79.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"browser-sync": "^2.18.13",
"gulp": "^4.0.2",
"gulp-gh-pages": "^0.5.4",
"gulp-plumber": "^1.2.1",
"gulp-pug": "^4.0.1",
"gulp-pug-lint": "^0.1.6",
"gulp-sass": "^5.1.0",
"jsonlint": "^1.6.2",
"sass": "^1.49.0"
}
}