-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.47 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
{
"name": "leopard-template",
"version": "1.1.1",
"description": "a simple HTML template engine",
"main": "./dist/leopard.server.min.js",
"scripts": {
"build": "rollup -c",
"test": "./node_modules/.bin/mocha --recursive",
"lint": "./node_modules/.bin/eslint src --fix",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -R spec",
"codecov": "node ./codecov.js",
"benchmark": "node ./benchmark/benchmark.js",
"serve:examples": "./node_modules/.bin/nodemon ./examples/server.js",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stop2stare/leopard.git"
},
"keywords": [
"leopard",
"template"
],
"author": "liucheng",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/stop2stare/leopard/issues"
},
"homepage": "https://github.com/stop2stare/leopard#readme",
"devDependencies": {
"codecov": "^3.0.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.17.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.5",
"mocha": "^5.0.0",
"rollup": "^0.55.3",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-uglify": "^3.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}