-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.02 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
{
"name": "simple-virtual-dom",
"version": "0.1.9",
"description": "Basic virtual dom algorithm",
"main": "index.js",
"scripts": {
"build": "run-s clean && run-p build:*",
"build:main": "tsc -p tsconfig.json",
"test": "jest",
"watch": "run-s clean build:main && run-p \"build:main -- -w\" \"test:unit -- --watch\"",
"clean": "trash build",
"reset": "git clean -dfx && git reset --hard && npm i"
},
"engines": {
"node": ">=10.0"
},
"scripts-info": {
"build": "Clean and rebuild the project",
"test": "Lint and unit test the project",
"watch": "Watch and rebuild the project on save, then rerun relevant tests",
"version": "Bump package.json version, update CHANGELOG.md, tag release",
"reset": "Delete all untracked files and reset the repo to the last commit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/livoras/simple-virtual-dom.git"
},
"keywords": [
"virtual-dom"
],
"author": "Livoras",
"license": "MIT",
"bugs": {
"url": "https://github.com/livoras/simple-virtual-dom/issues"
},
"homepage": "https://github.com/livoras/simple-virtual-dom#readme",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/fs-extra": "^8.0.1",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.17",
"@types/sinon": "^9.0.4",
"@types/sinon-chai": "^3.2.4",
"chai": "^4.2.0",
"istanbul": "^0.4.3",
"jest": "^24.9.0",
"jsdom": "^7.0.2",
"mocha": "^2.3.4",
"mocha-jsdom": "^1.0.0",
"npm-run-all": "^4.1.5",
"sinon": "^1.17.7",
"sinon-chai": "^2.14.0",
"standard": "^7.1.2",
"trash-cli": "^3.0.0",
"ts-jest": "^24.1.0",
"ts-node": "^8.5.3",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.7.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}