-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
101 lines (101 loc) · 2.61 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
{
"name": "es6-template",
"version": "1.0.4",
"description": "Small, sync and async es6 template engine, built on top of [gana][] and ES6/ES2015 Template Strings, working on `[email protected]` too!",
"repository": "tunnckoCore/es6-template",
"author": "Charlike Mike Reagent <@tunnckoCore> (http://www.tunnckocore.tk)",
"precommit.silent": true,
"main": "index.js",
"license": "MIT",
"scripts": {
"prebuild": "npm install && npm test && mkdirp dist",
"build": "npm run bundle && npm run standalone",
"bundle": "browserify -dr ./index.js:es6template -o dist/es6-template.js",
"postbundle": "uglifyjs dist/es6-template.js -m -c -o dist/es6-template.min.js --source-map dist/es6-template.min.js.map",
"standalone": "browserify -ds es6template index.js -o dist/es6-template.standalone.js",
"poststandalone": "uglifyjs dist/es6-template.standalone.js -m -c -o dist/es6-template.standalone.min.js --source-map dist/es6-template.standalone.min.js.map",
"lint": "standard --verbose",
"pretest": "npm run lint",
"test": "npm run coverage",
"posttest": "npm run lint:coverage",
"coverage": "nyc node test.js",
"lint:coverage": "nyc check-coverage --lines 100 --statements 100 --branches 100 --functions 100",
"report-coverage": "nyc report --reporter=text-lcov | coveralls",
"prerelease": "npm test",
"release": "standard-version --sign --no-verify",
"precommit": "git add --all",
"commit": "git-cz"
},
"dependencies": {
"gana": "^1.1.1",
"try-catch-callback": "^2.0.0"
},
"devDependencies": {
"browserify": "14.4.0",
"commitizen": "2.9.6",
"coveralls": "2.13.1",
"cz-conventional-changelog": "2.0.0",
"mkdirp": "0.5.1",
"mukla": "0.4.9",
"nyc": "11.0.3",
"pre-commit": "1.2.2",
"standard": "10.0.2",
"standard-version": "4.2.0",
"uglify-js": "3.0.26"
},
"files": [
"dist/",
"index.js"
],
"keywords": [
"1kb",
"async",
"asynchronous",
"browser",
"compile",
"easy",
"engine",
"es2015",
"es6",
"es6-template",
"fast",
"gana",
"literals",
"render",
"small",
"standard",
"string",
"sync",
"synchronous",
"template",
"tpl"
],
"standard": {
"ignore": [
"dist/**"
]
},
"verb": {
"run": true,
"toc": false,
"layout": "empty",
"tasks": [
"readme"
],
"lint": {
"reflinks": true
},
"related": {
"list": []
},
"reflinks": [
"gana",
"gana-compile"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}