-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.73 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
{
"name": "mvvm.js",
"version": "1.0.0",
"description": "Model-View-ViewModel Simple Framework",
"keywords": [
"mvvm",
"ui",
"typescript"
],
"author": "Michael Dokolin <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dokmic/mvvm.js"
},
"bugs": {
"url": "https://github.com/dokmic/mvvm.js/issues"
},
"files": [
"lib"
],
"main": "lib/index.js",
"module": "lib/index.mjs",
"es2015": "lib/index.mjs",
"types": "lib/index.d.ts",
"scripts": {
"build": "rollup -c rollup.config.js",
"coverage": "codecov",
"docs": "typedoc",
"lint": "eslint --ext ts,tsx src/ demo/src/",
"test": "jest --coverage"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1",
"@rollup/plugin-node-resolve": "^9.0",
"@types/jest": "^26.0",
"@typescript-eslint/eslint-plugin": "^4.3",
"@typescript-eslint/parser": "^4.3",
"codecov": "^3.7",
"csstype": "^2.6",
"eslint": "^7.10",
"eslint-config-airbnb": "^18.2",
"eslint-config-prettier": "^6.12",
"eslint-import-resolver-typescript": "^2.3",
"eslint-plugin-import": "^2.22",
"eslint-plugin-prettier": "^3.1",
"eslint-plugin-react": "^7.21",
"jest": "^26.4",
"jest-extended": "^0.11",
"prettier": "^2.1",
"rollup": "^2.28",
"rollup-plugin-copy": "^3.3",
"rollup-plugin-dts": "^1.4",
"rollup-plugin-terser": "^7.0",
"rollup-plugin-typescript2": "^0.27",
"ts-jest": "^26.4",
"ts-toolbelt": "^8.0",
"typedoc": "^0.19",
"typedoc-plugin-external-module-map": "^1.2",
"typescript": "^4.0"
},
"jest": {
"preset": "ts-jest",
"setupFilesAfterEnv": [
"jest-extended"
],
"testEnvironment": "node"
}
}