-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
62 lines (62 loc) · 1.46 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
{
"name": "parallax-loader",
"version": "1.0.1",
"description": "typescript based parallax loader for ini configuration file",
"main": "./dist/index.js",
"dependencies": {
"typescript": "^4.9.5",
"loader-utils": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"babel-jest": "^27.0.6",
"eslint": "^7.32.0",
"jest": "^27.0.6",
"rollup": "^2.53.2",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^27.0.5"
},
"scripts": {
"build": "rollup -c",
"pub": "npm run build && npm publish",
"test": "jest",
"lint": "eslint src/**",
"genTS": "node ./dist/gen.js ./example/Config.ts ./example/main.ini",
"genJS": "node ./dist/gen.js ./example/Config.ts ./example/main.ini --js"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/parallax-loader.git"
},
"bugs": {
"url": "https://github.com/microsoft/parallax-loader/issues"
},
"homepage": "https://github.com/microsoft/parallax-loader",
"keywords": [
"parallax",
"codegen",
"ini",
"typescript"
],
"author": "David Zeng",
"license": "MIT",
"files": [
"/dist"
],
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"<rootDir>/test/*.test.ts"
]
}
}