-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.53 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.53 KB
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
{
"name": "java-properties",
"description": "Reads and interpolates Java .properties files",
"version": "1.0.2",
"homepage": "http://github.com/mattdsteele/java-properties",
"author": {
"email": "orphum@gmail.com",
"name": "Matt Steele"
},
"repository": {
"type": "git",
"url": "https://github.com/mattdsteele/java-properties.git"
},
"bugs": {
"url": "https://github.com/mattdsteele/java-properties/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"test/*"
]
}
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-types",
{
"exclude": [
"test/*"
]
}
]
]
},
"engines": {
"node": ">= 0.6.0"
},
"scripts": {
"test": "TS_NODE_PROJECT=\"tsconfig.test.json\" mocha --require ts-node/register \"test/**/*.ts\"",
"build": "pack build"
},
"devDependencies": {
"@pika/pack": "^0.3.7",
"@pika/plugin-build-node": "^0.4.0",
"@pika/plugin-build-types": "^0.4.0",
"@pika/plugin-standard-pkg": "^0.4.0",
"@pika/plugin-ts-standard-pkg": "^0.4.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^11.13.17",
"chai": "^4.2.0",
"mocha": "^10.2.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"keywords": [
"java",
"properties"
]
}