-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.29 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
{
"name": "@heathmont/money",
"version": "2.4.22",
"author": "Reio Piller",
"contributors": [
"Margus Lamp"
],
"homepage": "https://github.com/coingaming/node-money#readme",
"repository": {
"type": "git",
"url": "https://github.com/coingaming/node-money.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=8"
},
"dependencies": {
"@heathmont/money-config": "2.3.21"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "8.0.1",
"babel-jest": "^24.9.0",
"jest": "^25.3.0",
"ts-jest": "^25.3.1",
"tslint": "5.17.0",
"typescript": "3.5.2"
},
"directories": {
"lib": "./dist"
},
"scripts": {
"publish-minor": "npm run test && npm version minor && npm publish && git push && git push --tags",
"compile": "tsc -p ./",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepack": "npm run compile",
"postpublish": "git push --follow-tags"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$",
"testEnvironment": "node",
"roots": [
"<rootDir>/src/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}