-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.25 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.25 KB
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
{
"name": "think-template-handlebars",
"description": "handlebars template adapter for ThinkJS",
"version": "1.2.0",
"author": {
"name": "welefen",
"email": "welefen@gmail.com"
},
"scripts": {
"test": "mocha --reporter spec --timeout 5000 --recursive test/",
"test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha -- -t 5000 --recursive -R spec test/",
"compile": "babel --loose all --optional runtime --stage 0 --modules common src/ --out-dir lib/",
"watch-compile": "npm run compile -- --watch",
"prepublish": "npm run compile",
"eslint": "eslint src/"
},
"contributors": [],
"main": "lib/index.js",
"dependencies": {
"babel-runtime": "5.8.25",
"handlebars": "4.5.3",
"handlebars-layouts": "3.1.3"
},
"devDependencies": {
"mocha": "1.20.1",
"istanbul": "0.4.0",
"babel": "5.8.23",
"thinkjs": "2.x.x",
"eslint": "6.8.0",
"babel-eslint": "4.1.3"
},
"keywords": [
"thinkjs"
],
"repository": {
"type": "git",
"url": "https://github.com/welefen/think-template-handlebars"
},
"engines": {
"node": ">=0.12.0"
},
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/welefen/think-template-handlebars/issues"
}
}