-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.2 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.2 KB
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
{
"name": "virtual-dom",
"version": "1.0.0",
"description": "virtual-dom lib created by TypeScript",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --config build/webpack.config.dev.js",
"build": "webpack --config build/webpack.config.prod.js",
"test": "jest --verbose",
"eslint": "eslint src/* --ext .ts",
"eslint-fix": "eslint --fix src/* --ext .ts"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.15",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"awesome-typescript-loader": "^5.2.1",
"babel-eslint": "^10.0.2",
"eslint": "^6.1.0",
"eslint-config-alloy": "^2.0.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"lodash": "^4.17.14"
},
"jest": {
"rootDir": "tests",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
]
}
}