-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.67 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
{
"name": "@sozialhelden/ietf-language-tags",
"private": false,
"version": "2.0.1",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"author": "Sebastian Felix Zappe <[email protected]>",
"repository": "sozialhelden/ietf-language-tags",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"bundleDependencies": [],
"deprecated": false,
"description": "Helps you working with IETF language tags as specified by BCP 47 / RFC 5646.",
"devDependencies": {
"@babel/parser": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@babel/runtime": "^7.5.5",
"@babel/types": "^7.5.5",
"@sozialhelden/ac-format": "^7.4.3",
"@types/jest": "^24.0.15",
"@types/lodash.compact": "^3.0.6",
"@types/lodash.pick": "^4.4.6",
"abort-controller": "^3.0.0",
"babel-jest": "^24.8.0",
"core-js": "^2.6.9",
"coveralls": "^3.0.0",
"cross-env": "^5.1.1",
"cz-conventional-changelog": "^2.1.0",
"intl": "^1.2.5",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"lodash.pick": "^4.4.0",
"rimraf": "^2.6.1",
"ts-jest": "^24.0.2",
"tslint": "^5.5.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.6.0",
"tslint-config-standard": "^7.0.0",
"typescript": "^3.3.3333"
},
"scripts": {
"postinstall": "cp -r ./node_modules/language-subtag-registry/data/json ./src/json",
"prebuild": "rimraf dist",
"build-mjs": "tsc -d && mv dist/index.js dist/index.mjs",
"build-cjs": "tsc -m commonjs",
"build": "npm run build-mjs && npm run build-cjs && rm dist/*.spec.*",
"start": "tsc -w",
"test": "jest",
"lint": "tslint tslint.json",
"test:watch": "jest --watch",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache",
"deploy-docs": "ts-node tools/gh-pages-publish",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"commit": "git-cz",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"semantic-release-prepare": "ts-node tools/semantic-release-prepare",
"format": "tslint --fix src/**/*.ts",
"prettier": "npx prettier --fix src/**/*.ts test/**/*.ts --write --single-quote",
"deploy": "npm run build && npm run test:prod && npm publish --access public"
},
"dependencies": {
"@types/lodash.difference": "^4.5.6",
"@types/lodash.uniq": "^4.5.6",
"language-subtag-registry": "^0.3.19",
"lodash.compact": "^3.0.1",
"lodash.difference": "^4.5.0",
"lodash.uniq": "^4.5.0"
}
}