-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.14 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
39
40
41
42
43
44
{
"name": "jyson",
"version": "4.1.1",
"description": "A template engine for json.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/jest",
"test:verbose": "npm test -- --verbose",
"test:watch": "npm test -- --watchAll",
"test:lint": "./node_modules/.bin/eslint .",
"report:coverage": "cat ./.coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/earobinson/jyson.git"
},
"keywords": [
"json",
"template"
],
"author": "Edward Andrew Robinson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/earobinson/jyson/issues"
},
"homepage": "https://github.com/earobinson/jyson#readme",
"devDependencies": {
"@ear/eslint-config": "^1.2.0",
"coveralls": "^3.0.2",
"eslint": "^4.19.1",
"jest": "^23.6.0",
"jest-junit": "^5.2.0",
"lodash.set": "^4.3.2"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.isfunction": "^3.0.9"
},
"jest-junit": {
"outputDirectory": "./.test-results/jest",
"outputName": "results.xml"
}
}