-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
37 lines (37 loc) · 908 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
37
{
"name": "json-templates",
"version": "5.1.0",
"description": "Simple JSON value templating.",
"main": "dist/index.js",
"scripts": {
"build": "rollup -c",
"pretest": "npm run build",
"test": "mocha",
"prettier": "prettier --write .",
"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": "^10.4.0",
"prettier": "^3.2.5",
"rollup": "^4.16.4",
"rollup-plugin-buble": "^0.19.8"
},
"dependencies": {
"object-path": "^0.11.8"
}
}