forked from grantila/awesome-phonenumber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "awesome-phonenumber",
"description": "Google's libphonenumber pre-compiled with the closure compiler",
"license": "MIT",
"version": "0.0.0-development",
"author": "Gustaf Räntilä <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/grantila/awesome-phonenumber.git"
},
"engines": {
"node": ">=12"
},
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./index.js",
"default": "./index-esm.mjs"
},
"./package.json": "./package.json"
},
"scripts": {
"build:libphonenumber": "node_modules/.bin/gulp",
"build:rewrite": "ts-node scripts/rewrite.ts",
"build:esm:build": "rollup -c ./rollup.config.js",
"build:esm:rewrite": "cat build/index-esm.js src/esm-outro.js > index-esm.mjs",
"build:esm": "yarn build:esm:build && yarn build:esm:rewrite",
"build": "yarn build:libphonenumber && yarn build:rewrite && yarn build:esm",
"test:compile": "scripts/test.sh",
"test": "yarn test:compile && NODE_OPTIONS=--experimental-vm-modules jest",
"cz": "git-cz",
"semantic-release": "semantic-release"
},
"pre-commit": [
"test"
],
"files": [
"lib",
"index.js",
"index-esm.mjs",
"index.d.ts"
],
"keywords": [
"libphonenumber",
"phonenumber",
"phone",
"number",
"closure",
"web",
"browser",
"browserify",
"awesome"
],
"devDependencies": {
"@babel/preset-env": "^7.17.10",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-commonjs": "^21.0.1",
"@types/jest": "^27.5.0",
"@types/mkdirp": "^1.0.1",
"@types/node": "^16.11.12",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"google-closure-compiler": "20221102.0.0",
"google-closure-library": "^20221102.0.0",
"gulp": "^4.0.2",
"jest": "^28.1.0",
"mkdirp": "^1.0.4",
"pre-commit": "^1.2.2",
"replace": "^1.2.1",
"rmfr": "^2.0.0",
"rollup": "^2.66.0",
"ts-jest-resolver": "^2.0.0",
"ts-node": "^10.7.0",
"typescript": "^4.2.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}