forked from fragaria/address-formatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.18 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
{
"name": "@akylas/address-formatter",
"version": "5.3.0",
"description": "Universal international address formatting in Javascript",
"main": "dist/cjs/address-formatter.js",
"types": "index.d.ts",
"browser": "dist/umd/address-formatter.js",
"module": "dist/es/address-formatter.js",
"scripts": {
"lint": "semistandard src test",
"lint:fix": "semistandard --fix src test",
"test": "rimraf coverage && jest --coverage",
"test:ci": "rimraf coverage && jest --coverage --ci",
"test:watch": "jest --watch --coverage",
"clean": "rimraf dist && rimraf src/templates/*.json",
"pull-submodules": "git submodule init && git submodule update",
"prepare-templates": "node management/prepare-templates.js",
"collect-aliases": "node management/collect-aliases.js",
"build": "rollup -c rollup.config.js"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Akylas/address-formatter"
},
"keywords": [
"address",
"geography",
"geodata"
],
"author": "Jirka Chadima <[email protected]>",
"license": "MIT",
"dependencies": {
"mustache": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@rollup/plugin-alias": "^5.0.1",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"babel-jest": "^29.0.1",
"babel-loader": "^9.0.0",
"eslint": "^8.6.0",
"jest": "^29.0.1",
"js-yaml": "^4.0.0",
"rimraf": "^5.0.0",
"rollup": "^2.0.0",
"rollup-plugin-terser": "^7.0.0",
"semistandard": "^17.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"semistandard": {
"env": [
"jest"
]
},
"jest": {
"testRegex": "./test/.*.spec.js",
"testPathIgnorePatterns": [
"/node_modules/"
],
"coverageReporters": [
"text",
"lcov"
],
"collectCoverageFrom": [
"src/**/*.js"
]
}
}