-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
33 lines (33 loc) · 911 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
{
"name" : "soynode",
"version" : "2.1.0",
"description" : "Utility for working with Closure Templates, aka Soy, from within a node.js application.",
"keywords" : ["node", "soy", "templates", "closure"],
"repository" : {
"type" : "git",
"url" : "http://github.com/Medium/soynode.git"
},
"homepage" : "https://github.com/Medium/soynode",
"author" : {
"name" : "Daniel Pupius",
"email" : "dan@medium.com",
"url" : "https://github.com/dpup"
},
"main" : "./lib/soynode.js",
"directories": {"lib": "./lib"},
"dependencies": {
"closure-templates": "^20160825.0.0",
"fs-extra": "1.0.0",
"obvious-closure-library": "^20161024.0.0",
"q": "1.4.1"
},
"devDependencies": {
"eslint": "1.6.0",
"nodeunit": "0.9.0",
"nodeunitq": "0.1.1"
},
"license": "Apache-2.0",
"scripts": {
"test": "node_modules/.bin/nodeunit test && eslint lib"
}
}