-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.5 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.5 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
{
"name": "monetochka",
"version": "1.0.6",
"description": "Simple, fast and zero-dependency currency formatting library",
"main": "monetochka.cjs.js",
"module": "monetochka.esm.js",
"types": "monetochka.d.ts",
"devDependencies": {
"@types/jest": "23.3.11",
"dts-bundle-generator": "2.0.0",
"jest": "23.6.0",
"rollup": "1.0.1",
"rollup-plugin-sourcemaps": "0.4.2",
"rollup-plugin-typescript2": "0.18.1",
"ts-jest": "23.10.5",
"typescript": "3.2.2"
},
"scripts": {
"test": "jest",
"tdd": "jest --watchAll",
"start": "rollup -c rollup.config.js -w",
"build": "rollup -c rollup.config.js && npm run dts",
"dts": "dts-bundle-generator src/index.ts -o monetochka.d.ts",
"prepublishOnly": "npm test && npm run build",
"postpublish": "rm monetochka.*"
},
"files": [
"LICENSE",
"monetochka.cjs.js",
"monetochka.esm.js",
"monetochka.d.ts"
],
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json",
"diagnostics": ""
}
},
"moduleDirectories": [
"node_modules"
],
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
".+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/tests/*.ts"
],
"testEnvironment": "node"
},
"author": "Nikolay Solovyov <i@mr-ozio.ru>",
"license": "MIT",
"keywords": [
"currency",
"money",
"format",
"utilities",
"finance",
"exchange",
"accounting",
"fiat",
"crypto"
]
}