-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.7 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": "machine-readable-zone",
"version": "0.2.14",
"description": "Machine Readable Zone",
"main": "dist/index.js",
"bin": "dist/index.js",
"types": "./index.d.ts",
"scripts": {
"clean-build": "rimraf ./dist",
"clean-postbuild": "rimraf ./dist/*.test.js ./dist/**/*.test.js ./dist/*.test.js.map ./dist/**/*.test.js.map",
"clean-coverage": "rimraf ./coverage && rimraf ./src/*.js ./src/**/*.js",
"test": "npm run clean-coverage && jest --no-cache -c ./jest.config.js",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"codeclimate": "cat ./coverage/lcov.info | codeclimate-test-reporter",
"build": "npm run clean-build && tsc -p ./tsconfig.json && npm run clean-postbuild",
"start": "ts-node-dev src/index.ts",
"lint": "tslint -c ./tslint.json -p ./tsconfig.json",
"validate": "npm run lint && npm run test && npm run build",
"prepublish": "npm run validate",
"prepush": "npm run validate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devlato/machine-readable-zone.git"
},
"readme": "README.md",
"files": [
"data",
"dist",
"index.d.ts",
"README.md",
"LICENSE"
],
"keywords": [
"machine-readable-zone",
"mrz",
"machine",
"readable",
"zone"
],
"author": "Denis Tokarev <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^22.1.1",
"@types/node": "^9.4.0",
"codeclimate-test-reporter": "^0.5.0",
"coveralls": "^3.0.0",
"husky": "^0.14.3",
"jest": "^22.2.2",
"rimraf": "^2.6.2",
"ts-jest": "^22.0.3",
"ts-node-dev": "^1.0.0-pre.9",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.5.0",
"typescript": "^2.7.1"
}
}