-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.11 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
{
"name": "fz-property-file-reader",
"version": "2.0.1",
"description": "for access property file",
"main": "./lib/index.js",
"keywords": [
"property file",
"properties file",
"property to json",
"json parser"
],
"scripts": {
"build": "babel src -d lib",
"test": "jest",
"prepublish": "npm run build && npm run test"
},
"jest": {
"bail": true,
"notify": true
},
"babel": {
"presets": [
"es2015"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vasikaran/fz-property-file-reader.git"
},
"author": "Vasikaran S <vasikaran.25@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Vasikaran/fz-property-file-reader/issues"
},
"homepage": "https://github.com/Vasikaran/fz-property-file-reader#readme",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-jest": "^20.0.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-jest": "^20.0.3",
"jest": "^19.0.2"
}
}