-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.09 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.09 KB
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
{
"name": "@multinet/mn-l10n",
"version": "3.1.0",
"description": "Multinet translation library",
"main": "dist/L10n.js",
"types": "dist/types",
"files": [
"src",
"dist"
],
"publishConfig": {
"registry": "https://www.myget.org/F/multinet/npm/"
},
"repository": "https://github.com/MultinetInteractive/MN.L10n",
"author": "Chris Gårdenberg, Linus Centerström",
"license": "GPL-3.0",
"sideEffects": true,
"devDependencies": {
"@babel/core": "^7.19.6",
"@types/jest": "^29.2.1",
"@types/node": "^18.11.9",
"esbuild": "^0.15.13",
"esbuild-plugin-babel": "^0.2.3",
"jest": "^29.2.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"scripts": {
"build": "tsc && node scripts/build.mjs",
"buildAndMinify": "tsc && node scripts/build.mjs --min",
"test": "node node_modules/jest/bin/jest.js",
"test-watch": "node node_modules/jest/bin/jest.js --watch",
"test-debug": "node --inspect-brk node_modules/jest/bin/jest.js --runInBand",
"test-coverage": "node node_modules/jest/bin/jest.js --collect-coverage",
"buildAndPublish": "yarn buildAndMinify && npm publish"
}
}