-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.19 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
64
65
66
67
68
69
70
71
{
"name": "elfproef",
"description": "Implementation of the 11-proof, a mathematical test used by the Dutch government for various digital identification numbers",
"version": "1.1.0",
"author": "Luit Hollander <luit@hollander.email> (https://luit.me)",
"repository": "https://github.com/MrLuit/elfproef.git",
"license": "MIT",
"main": "./dist/elfproef.node.js",
"module": "./dist/elfproef.js",
"typings": "./typings/src/index.d.ts",
"keywords": [
"elfproef",
"11-proef",
"negenproef",
"9-proef",
"check digit",
"bsn",
"burgerservicenummer"
],
"scripts": {
"tscheck": "tsc --noEmit --project tsconfig.json",
"tslint": "tslint --project .",
"tsbuild": "tsc --project tsconfig.json",
"build": "cross-env NODE_ENV=production webpack --config ./webpack/config.ts",
"clean": "rimraf ./dist && rimraf ./typings",
"test": "mocha -r ts-node/register ./tests/**/*.ts",
"prettier:diff": "prettier --write --config ./.prettierrc --list-different \"src/**/*.ts\" \"tests/**/*.ts\" \"webpack/**/*.ts\""
},
"dependencies": {},
"devDependencies": {
"@babel/core": "7.19.3",
"@babel/preset-env": "7.19.3",
"@types/chai": "4.2.7",
"@types/mocha": "5.2.7",
"@types/node": "18.8.2",
"@types/webpack": "4.41.2",
"@types/webpack-merge": "4.1.5",
"@types/webpack-node-externals": "1.7.0",
"awesome-typescript-loader": "5.2.1",
"chai": "4.2.0",
"cross-env": "6.0.3",
"husky": "4.0.10",
"lint-staged": "9.5.0",
"mocha": "7.0.0",
"prettier": "1.19.1",
"rimraf": "3.0.0",
"ts-node": "8.6.2",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "6.2.0",
"typescript": "3.7.4",
"webpack": "4.41.5",
"webpack-cli": "3.3.10",
"webpack-merge": "4.2.2",
"webpack-node-externals": "1.7.2"
},
"lint-staged": {
"*.ts": [
"prettier --write --config ./.prettierrc --config-precedence file-override",
"tslint --project .",
"git add"
]
},
"husky": {
"hooks": {
"post-commit": "git update-index --again",
"pre-commit": "lint-staged",
"pre-push": "npm run tslint && npm run tscheck && npm run test"
}
}
}