-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 879 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": "native-json-transform",
"version": "1.0.4",
"description": "Restructuring and performing operations on JSON on the fly for NodeJS.",
"main": "src/nativeJsonTransform.js",
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/aalfiann/native-json-transform"
},
"keywords": [
"json",
"transform",
"on-the-fly",
"node"
],
"author": "M ABD AZIZ ALFIAN",
"license": "MIT",
"bugs": {
"url": "https://github.com/aalfiann/native-json-transform/issues"
},
"homepage": "https://github.com/aalfiann/native-json-transform",
"dependencies": {},
"devDependencies": {
"coveralls": "^3.0.6",
"mocha": "^6.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1"
}
}