-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.94 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
{
"private": false,
"name": "abbreviate-currency",
"version": "1.0.2",
"homepage": "https://github.com/shaungrady/abbreviate-currency",
"description": "Abbreviate currency values in a configurable, locale-friendly way.",
"main": "dist/abbreviate-currency.umd.js",
"module": "dist/abbreviate-currency.es5.js",
"typings": "dist/types/abbreviate-currency.d.ts",
"author": "Shaun Grady",
"license": "MIT",
"scripts": {
"bundle": "rimraf dist && tsc -p tsconfig.build.json -m commonjs && rollup -c rollup.config.ts",
"test": "cross-env NODE_ICU_DATA='node_modules/full-icu' jest",
"test:watch": "cross-env NODE_ICU_DATA='node_modules/full-icu' jest --watchAll",
"test:coverage": "npm run test -- --reporters=default",
"lint": "tslint --project tsconfig.json",
"report-coverage": "codeclimate-test-reporter < ./coverage/lcov.info",
"preversion": "npm run test",
"version": "npm run bundle && git add -A dist"
},
"repository": {
"type": "git",
"url": "git@github.com:shaungrady/abbreviate-currency.git"
},
"bugs": {
"url": "https://github.com/shaungrady/abbreviate-currency/issues"
},
"keywords": [
"currency",
"money",
"locale",
"internationalization",
"short",
"approximate"
],
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/node": "^14.0.27",
"codeclimate-test-reporter": "^0.5.1",
"cross-env": "^6.0.3",
"full-icu": "^1.3.1",
"jest": "^26.2.2",
"jest-junit": "^11.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.23.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^26.1.4",
"tslint": "^5.20.1",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.8.3"
},
"files": [
"dist"
],
"jest-junit": {
"outputDirectory": "./test-results/jest",
"outputName": "results.xml"
}
}