forked from navikt/nav-faker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.26 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
{
"name": "nav-faker",
"version": "1.0.10",
"description": "Faker for å generere fødselsnummer, navn, og mer.",
"main": "dist/index.js",
"files": [
"/dist"
],
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc && npm run lint",
"lint": "tslint lib/**/*.ts",
"commit": "git cz"
},
"author": "",
"license": "MIT",
"dependencies": {
"babel-core": "^6.26.3",
"moment": "^2.22.2",
"seedrandom": "^2.4.3",
"typescript": "^3.0.1"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/seedrandom": "^2.4.27",
"babel-jest": "^23.4.2",
"cz-conventional-changelog": "^2.1.0",
"jest": "^23.4.2",
"semantic-release": "^15.9.3",
"ts-jest": "^23.1.2",
"tslint": "^5.11.0"
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testMatch": [
"**/*.test.+(ts|tsx|js)"
],
"modulePathIgnorePatterns": [
"node_modules",
"dist"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}