-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"version": "0.10.19",
"name": "json-shaping",
"description": "Module to do JSON shaping using transformations",
"keywords": [
"json",
"shaping",
"transform",
"transformation"
],
"homepage": "https://github.com/junior/json-shaping",
"author": {
"name": "Adao Junior"
},
"repository": {
"type": "git",
"url": "[email protected]:junior/json-shaping.git"
},
"bugs": {
"url": "https://github.com/junior/json-shaping/issues"
},
"main": "./lib/shaping.js",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "npm run lint && npm run test-specs",
"test-list": "npm run lint-verbose && npm run test-verbose",
"lint": "eslint lib/*.js",
"lint-verbose": "eslint --debug lib/*.js",
"lint-html": "eslint lib/*.js -f html -o ./reports/lint-results.html",
"test-specs": "node_modules/jasmine-node/bin/jasmine-node test/",
"test-verbose": "node_modules/jasmine-node/bin/jasmine-node test/ --verbose"
},
"license": "MIT",
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"eslint": "^6.2.2",
"jasmine-node": "^3.0.0"
}
}