-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.03 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": "@deloitte-digital-au/decimalformat",
"version": "0.1.0",
"description": "Node implementation of Java's DecimalFormat",
"main": "index.js",
"homepage": "https://github.com/DeloitteDigitalAPAC/DecimalFormat/",
"repository": {
"type": "git",
"url": "https://github.com/DeloitteDigitalAPAC/DecimalFormat.git"
},
"bugs": "https://github.com/DeloitteDigitalAPAC/DecimalFormat/issues",
"engines": {
"node": ">=6"
},
"files": [
"dist/*",
"index.js"
],
"eslintConfig": {
"env": {
"jest": true
}
},
"contributors": [
"Lachlan McDonald <[email protected]>"
],
"scripts": {
"test": "jest",
"grammar:build": "node ./generate.js",
"java": "npm run java:compile; npm run java:build",
"java:compile": "javac -d . ./src/ParityTests.java",
"java:build": "java ParityTests"
},
"keywords": [
"HTL"
],
"author": "Lachlan McDonald <[email protected]>",
"license": "BSD-3-Clause",
"devDependencies": {
"jest": "^23.0.1",
"pegjs": "^0.10.0"
}
}