-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.6 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
66
67
68
69
70
71
72
{
"name": "propson",
"version": "0.0.3",
"description": "Convert .properties to JSON",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src/",
"tdd": "npm run test -- --watch",
"test": "ava test/*.test.js",
"build": "babel src -d lib",
"debug": "babel-node examples/index.js",
"precli": "mkdir -p tmp",
"cli:flat": "babel-node src/cli.js flat 'examples/*.properties' --dir ./tmp",
"cli:nested": "babel-node src/cli.js nested 'examples/*.properties' --dir ./tmp"
},
"bin": {
"propson": "./lib/cli.js"
},
"files": [
"lib"
],
"repository": {
"url": "git+https://github.com/JohnPhoto/propson.git",
"type": "git"
},
"keywords": [
"java",
"properties",
"json"
],
"author": "JohnPhoto <john@johnphoto.se>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JohnPhoto/propson/issues"
},
"homepage": "https://github.com/JohnPhoto/propson#readme",
"babel": {
"presets": [
"env"
]
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"eslintConfig": {
"extends": "airbnb-base",
"plugins": [
"import"
]
},
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.9.0",
"fs-promise": "^1.0.0",
"glob": "^7.1.1",
"glob-promise": "^3.1.0",
"neat-contract": "^1.1.0",
"ramda": "^0.23.0"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.18.0",
"babel-preset-env": "^1.1.8",
"babel-register": "^6.18.0",
"eslint": "^3.13.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0"
}
}