-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.46 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
{
"name": "decifloat",
"version": "0.1.0",
"description": "Format floats as decimals as accurately as possible.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Dmitry S, Grist Labs",
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "nyc mocha 'test/test*.{js,ts}'",
"test-timing": "TIMING_TESTS=1 mocha 'test/test*.{js,ts}'",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"bench-node": "ts-node test/bench.ts",
"bench-browser": "webpack --config test/webpack.config.js && echo 'Open test/fixtures/bench.html in a browser'"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dsagal/decifloat.git"
},
"bugs": {
"url": "https://github.com/dsagal/decifloat/issues"
},
"homepage": "https://github.com/dsagal/decifloat#readme",
"keywords": [
"floats",
"decimals",
"format",
"numeral"
],
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"test/*"
]
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.14",
"@types/numeral": "^0.0.28",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"mocha": "8.0.1",
"numeral": "^2.0.6",
"nyc": "^15.1.0",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
}
}