-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.52 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
{
"name": "chassis-js",
"version": "1.0.0",
"description": "VIN (Vehicle Identification Number) decoder library. Also known as chassis number.",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"test": "jest",
"_build": "tsc",
"build": "parcel build src/index.ts",
"report": "parcel build src/index.ts --detailed-report 20 --reporter @parcel/reporter-bundle-analyzer",
"watch": "parcel watch",
"publish-lib": "jest && yarn run build && yarn publish",
"publish-dryrun": "jest && yarn run build && yarn publish --dry-run",
"clean": "rimraf dist .parcel-cache"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/jmaister/chassis-js.git"
},
"keywords": [
"VIN",
"vehicle",
"identification",
"number",
"chassis",
"chassis number"
],
"author": "Jordi Burgos <jordiburgos@gmail.com>",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/jmaister/chassis-js/issues"
},
"homepage": "/~https://github.com/jmaister/chassis-js",
"devDependencies": {
"@parcel/packager-ts": "^2.6.2",
"@parcel/reporter-bundle-analyzer": "^2.6.2",
"@parcel/transformer-typescript-types": "^2.6.2",
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"parcel": "^2.6.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4"
},
"dependencies": {
"typescript": "4.7.4"
},
"targets": {
"main": {
"optimize": true
}
},
"jest": {
"preset": "ts-jest"
}
}