-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.14 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
{
"name": "felid-handlebars",
"version": "1.3.0",
"description": "Render Handlebars templates for Felid.js",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"lint": "standard --fix src/*.js test/*.js | snazzy",
"test": "npm run lint && npm run unit",
"unit": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felidjs/felid-handlebars.git"
},
"keywords": [
"handlebars",
"template",
"felid",
"felid-plugin"
],
"author": "zoron (https://github.com/fralonra/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/felidjs/felid-handlebars/issues"
},
"homepage": "https://github.com/felidjs/felid-handlebars#readme",
"dependencies": {
"handlebars": "^4.5.3",
"lru-cache": "^5.1.1"
},
"devDependencies": {
"felid": "^0.1.0-alpha.4",
"injectar": "^1.4.0",
"jest": "^24.9.0",
"pre-commit": "^1.2.2",
"snazzy": "^8.0.0",
"standard": "^14.3.1"
},
"engines": {
"node": ">= 10.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"standard": {
"env": [
"jest"
]
}
}