-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.42 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
{
"name": "@tradeshift/g11n-langneg",
"version": "0.0.1",
"description": "Language negotiation for the masses",
"license": "MIT",
"main": "dist/es/index.js",
"scripts": {
"clean": "rm -rf .cache-loader .cache build node_modules/.cache",
"build-local": "npx npm-force-resolutions && npm install",
"prepublish": "npm run validate",
"after-success": "tradeshift-scripts travis-after-success",
"build": "rm -rf ./dist && tsc --downlevelIteration",
"format": "tradeshift-scripts format",
"lint": "tradeshift-scripts lint",
"precommit": "tradeshift-scripts precommit",
"test:ci": "tradeshift-scripts test --coverage",
"test": "tradeshift-scripts test",
"validate": "tradeshift-scripts validate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tradeshift/g11n-langneg.git"
},
"keywords": [
"globalization",
"g11n",
"langneg",
"bcp47"
],
"author": "Tradeshift",
"bugs": {
"url": "https://github.com/Tradeshift/g11n-langneg/issues"
},
"homepage": "https://github.com/Tradeshift/g11n-langneg#readme",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/prettier": "2.6.0",
"cz-conventional-changelog": "^3.0.1",
"tradeshift-scripts": "^4.0.1",
"typescript": "^3.9.10"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"bcp-47": "^1.0.8"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "^1.2.8"
}
}