-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "@reactgular/object-handlebars",
"version": "1.0.3",
"description": "Minimal templating with {{handlebars}} in a JavaScript object.",
"author": "reactgular.com",
"homepage": "https://github.com/reactgular/object-handlebars.git",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/reactgular/object-handlebars.git"
},
"bugs": {
"url": "https://github.com/reactgular/object-handlebars/issues"
},
"keywords": [
"javascript",
"typescript",
"library",
"templates",
"handlebars",
"mustache",
"object",
"properties"
],
"scripts": {
"test": "jest",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"build": "rm -fr ./lib && tsc",
"lint": "tslint -p tsconfig.json",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.4",
"coveralls": "^3.0.6",
"jest": "^24.9.0",
"ts-jest": "^24.0.2",
"tslint": "^5.19.0",
"typescript": "~3.6.2"
},
"files": [
"lib/**/*"
],
"dependencies": {
"dot-prop": "^5.1.0"
}
}