-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
89 lines (89 loc) · 2.29 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
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "apprun",
"version": "3.33.9",
"description": "JavaScript library that has Elm inspired architecture, event pub-sub and components",
"main": "dist/apprun.js",
"module": "esm/apprun.js",
"types": "apprun.d.ts",
"bin": {
"apprun": "apprun-cli.js"
},
"scripts": {
"build": "tsc -p src && rollup -c && webpack --mode production",
"test": "jest --watch",
"jest": "jest",
"jest:debug": "node --inspect node_modules/.bin/jest --runInBand",
"start": "webpack serve --mode development",
"build:docs": "marked -i README.md -o demo/home.html & marked -i WHATSNEW.md -o demo/new.html",
"rollup": "tsc -p src && rollup -c"
},
"keywords": [
"JavaScript",
"TypeScript",
"model-view-update",
"elm architecture",
"virtual DOM",
"apprun",
"app.run",
"app.start"
],
"author": "Yiyi Sun <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yysun/apprun.git"
},
"bugs": {
"url": "https://github.com/yysun/apprun/issues"
},
"homepage": "https://github.com/yysun/apprun#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/jest": "^27.5.2",
"jest": "^27.5.1",
"json-loader": "^0.5.7",
"lit-html": "^2.8.0",
"marked": "^14.1.2",
"rollup": "^2.79.2",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.1.4",
"ts-loader": "^9.5.1",
"typescript": "^4.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"jest": {
"testEnvironment": "jsdom",
"transformIgnorePatterns": [
"/node_modules/(?!lit-html).+\\.js"
],
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"globals": {
"ts-jest": {
"diagnostics": true,
"tsconfig": "tsconfig.jest.json"
}
},
"testRunner": "jest-jasmine2"
},
"dependencies": {
"commander": "^12.1.0",
"js-yaml": "^4.1.0"
}
}