-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 987 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": "render-jayson",
"version": "0.0.3",
"description": "Simple tool to render valid JSON from a valid JSON template with variables wrapped like ${variable} inside string values",
"main": "index.js",
"directories": {
"lib": "./lib",
"test": "./test",
"examples": "./examples"
},
"scripts": {
"test": "NODE_ENV=testing mocha",
"lint": "eslint .",
"nsp": "nsp check"
},
"keywords": [
"json",
"template"
],
"author": "Tomasz Łukasik <[email protected]>",
"license": "ISC",
"dependencies": {
"lodash.isplainobject": "4.0.6",
"lodash.uniq": "4.5.0",
"lodash.update": "4.10.2"
},
"devDependencies": {
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"eslint": "3.7.1",
"eslint-config-vgno": "7.0.0",
"eslint-plugin-promise": "2.0.1",
"mocha": "3.1.0",
"nsp": "2.6.2"
}
}