forked from yysun/apprun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.76 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
{
"name": "apprun",
"version": "1.21.10",
"description": "JavaScript library that has Elm inspired architecture, event pub-sub and components",
"main": "dist/apprun.js",
"types": "apprun.d.ts",
"bin": "apprun-cli.js",
"scripts": {
"build": "webpack -p --mode production",
"test": "jest --watch",
"jest": "jest",
"jest:debug": "node --inspect node_modules/.bin/jest --runInBand",
"start": "webpack-dev-server --mode development",
"build:docs": "marked -i README.md -o demo/home.html & marked -i WHATSNEW.md -o demo/new.html"
},
"keywords": [
"JavaScript",
"TypeScript",
"model-view-update",
"elm architecture",
"virtual DOM",
"apprun",
"app.run",
"app.start"
],
"author": "Yiyi Sun <yiyisun@gmail.com>",
"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",
"dependencies": {
"commander": "^2.20.0"
},
"devDependencies": {
"@types/jasmine": "^3.4.0",
"jasmine-core": "^3.4.0",
"jest": "^24.9.0",
"json-loader": "^0.5.7",
"marked": "^0.7.0",
"morphdom": "^2.5.3",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"tslint": "^5.15.0",
"typescript": "^3.5.3",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"globals": {
"ts-jest": {
"diagnostics": true
}
}
}
}