-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "langtag-utils",
"description": "A collection of useful utilities for bcp47 and rfc4647",
"version": "2.0.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hupe1980/langtag-utils"
},
"keywords": [
"bcp47",
"rfc4647",
"langtag",
"subtag",
"language",
"lng",
"lang",
"typescript"
],
"main": "lib/index.js",
"module": "lib.es6/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"lib.es6"
],
"scripts": {
"test": "jest --env=jsdom",
"test:watch": "jest --watch --env=jsdom",
"lint": "eslint '*/**/*.{ts,tsx}' --report-unused-disable-directives",
"build": "npm run build:cjs && npm run build:es6",
"build:cjs": "rimraf lib && tsc",
"build:es6": "rimraf lib.es6 && tsc --module es6 --outdir lib.es6",
"build:watch": "rimraf lib && tsc -w",
"prepare": "npm run build"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"jest": "^24.9.0",
"rimraf": "^3.0.2",
"ts-jest": "^24.3.0",
"typescript": "^3.9.7"
}
}