-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
54 lines (54 loc) · 1.5 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": "yallajs",
"version": "2.0.0-beta.40",
"description": "Template Literals Engine",
"scripts": {
"commit": "git-cz",
"build": "babel src -d lib",
"zip": "node gzip",
"report-coverage": "cat ./coverage/report-lcov/lcov.info | codecov",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"compress": "uglifyjs lib/yalla.js -o lib/yalla.min.js -c -m",
"test": "babel src -d lib && karma start --single-run --browsers ChromeHeadless karma.conf.js && uglifyjs lib/yalla.js -o lib/yalla.min.js -c -m && node gzip"
},
"repository": "https://github.com/yallajs/yalla.git",
"keywords": [
"html",
"component",
"with",
"zero",
"boilerplate"
],
"author": "'Arif Rachim",
"license": "MIT",
"bugs": {
"url": "https://github.com/yallajs/yalla/issues"
},
"homepage": "http://yallajs.io",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"chai": "^4.1.2",
"codecov.io": "^0.1.6",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"ghooks": "^2.0.0",
"karma": "^1.7.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"mocha": "^4.0.1",
"semantic-release": "^8.0.3",
"uglify-es": "^3.1.3"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"config": {
"ghooks": {
"pre-commit": "yarn test"
}
},
"main": "lib/yalla.min.js"
}