-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "template-format",
"version": "1.2.5",
"description": "Simple string formatting with support for nested data.",
"main": "build/index.js",
"scripts": {
"build": "babel index.js --out-dir build",
"test": "tape test.js",
"preversion": "npm run test && npm run build && git add build",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/educastellano/template-format.git"
},
"author": "Eduard Castellano",
"license": "ISC",
"bugs": {
"url": "https://github.com/educastellano/template-format/issues"
},
"homepage": "https://github.com/educastellano/template-format#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"tape": "^4.11.0"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-object-rest-spread"
]
},
"dependencies": {}
}