-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.03 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
{
"name": "handgrip",
"version": "0.4.0",
"description": "Enable generator helper for Handlebars",
"keyword": [
"handlebars",
"template",
"generator",
"render",
"view",
"koa",
"co"
],
"main": "lib/index.js",
"engines": {
"node": ">= 0.12.0",
"iojs": ">=1.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/th507/handgrip"
},
"homepage": "https://github.com/th507/handgrip",
"scripts": {
"lint": "eslint lib",
"testonly": "mocha --ui tdd test/index.js",
"test": "${npm_package_scripts_lint} && ${npm_package_scripts_testonly}"
},
"author": {
"name": "Jingwei Liu",
"email": "liujingwei@gmail.com"
},
"bugs": {
"url": "http://github.com/th507/handgrip/issues",
"email": "liujingwei@gmail.com"
},
"license": "MIT",
"dependencies": {
"handlebars": "^4.7.6"
},
"devDependencies": {
"chai": "^4.2.0",
"co": "^4.5.2",
"eslint": "^7.4.0",
"lodash": "^4.17.19",
"mocha": "^7.2.0",
"sinon": "^9.0.2"
}
}