-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
{
"name": "@artifact-project/i18n",
"version": "1.1.1",
"description": "A simple module for internationalization with support some feature CLDR.",
"author": "RubaXa <ibnRubaXa@gmail.com>",
"license": "MIT",
"repository": "git@github.com:artifact-project/i18n.git",
"main": "index.js",
"source": "./src/index.html",
"targets": {
"main": false
},
"scripts": {
"start": "npx parcel",
"build": "npx parcel build --dist-dir=docs",
"test": "jest --coverage",
"ts-build": "tsc",
"git-clean": "git clean -f",
"prepublishOnly": "npm run test && npm run ts-build",
"postpublish": "npm run git-clean"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"jest": "^29.3.1",
"parcel": "^2.8.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "\\.tests\\.ts$",
"transformIgnorePatterns": [],
"setupFilesAfterEnv": [
"<rootDir>/__jest__/extensions.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}