-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.56 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "data-interpreter",
"version": "1.0.2",
"license": "MIT",
"description": "A library to transform / normalize / map a data source (JS Data Structure) using a template",
"main": "src/main.js",
"author": "Joel De La Torriente <[email protected]> (https://github.com/jjdltc)",
"scripts": {
"test": "mocha --recursive",
"lint": "eslint .",
"coverage": "nyc --reporter=html --reporter=text --reporter=text-summary npm run test"
},
"files": [
"/src"
],
"keywords": [
"data-interpreter",
"template",
"data-template",
"transform",
"data-transfor",
"normalize",
"data-normalize",
"structure",
"scheme",
"data-scheme",
"json",
"json-data",
"data",
"mapping",
"data-mapping",
"dictionary",
"interpreter"
],
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"chai": "^4.2.0",
"eslint": "^6.1.0",
"husky": "^3.0.2",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"rewire": "^4.0.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"maintainers": [
"Joel De La Torriente <[email protected]> (http://jjdltc.com)"
],
"contributors": [
"Joel De La Torriente <[email protected]> (http://jjdltc.com)"
],
"bugs": {
"url": "https://github.com/jjdltc/data-interpreter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jjdltc/data-interpreter.git"
}
}