forked from datavis-tech/json-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 867 Bytes
/
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
{
"name": "json-templates",
"version": "4.3.0",
"description": "Simple JSON value templating.",
"main": "dist/index.js",
"scripts": {
"build": "rollup -c",
"pretest": "npm run build",
"test": "mocha",
"prepublishOnly": "npm test",
"postpublish": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datavis-tech/json-templates.git"
},
"keywords": [
"json",
"template"
],
"author": "Curran Kelleher",
"license": "MIT",
"bugs": {
"url": "https://github.com/datavis-tech/json-templates/issues"
},
"homepage": "https://github.com/datavis-tech/json-templates#readme",
"devDependencies": {
"mocha": "^9.1.2",
"rollup": "^2.58.0",
"rollup-plugin-buble": "^0.19.8"
},
"dependencies": {
"dedupe": "^3.0.2",
"object-path": "^0.11.8"
}
}