-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·55 lines (55 loc) · 1.35 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
{
"name": "gotpl",
"version": "8.4.5",
"homepage": "https://github.com/Lanfei/gotpl",
"description": "A lightweight, high-performance JavaScript template engine.",
"main": "dist/gotpl.common.js",
"module": "dist/gotpl.esm.js",
"browser": "dist/gotpl.js",
"files": [
"src",
"dist/*.js"
],
"scripts": {
"test": "mocha test/*.js",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"build": "rimraf dist && rollup -c && npm run uglify",
"uglify": "uglifyjs dist/gotpl.js -o dist/gotpl.min.js -c --source-map",
"prepublish": "npm run test"
},
"author": {
"name": "Lanfei",
"url": "http://www.clanfei.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/Lanfei/gotpl.git"
},
"license": "MIT",
"engines": {
"node": ">=0.10.0"
},
"keywords": [
"tpl",
"template",
"template-engine"
],
"dependencies": {
"escape-html": "^1.0.3",
"is-keyword-js": "^1.0.3",
"js-tokens": "^4.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"rimraf": "^2.6.3",
"rollup": "^1.1.2",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"uglify-js": "^3.4.9"
}
}