-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.46 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
{
"name": "ud",
"version": "3.3.1",
"description": "Utilities for updating code live with hot module replacement",
"main": "js/index.js",
"types": "index.d.ts",
"sideEffects": false,
"scripts": {
"prepare": "rimraf js/ && babel -s true -d js/ src/ && flow-copy-source -v src js && mv -v js/noop.js* ./",
"test": "yarn run lint && yarn run flow_check && mocha && tsc",
"flow_check": "flow check",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Macil/ud.git"
},
"keywords": [
"hmr",
"reload",
"hot",
"edit",
"live",
"livereload"
],
"author": "Chris Cowan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Macil/ud/issues"
},
"homepage": "https://github.com/Macil/ud#readme",
"dependencies": {
"@babel/runtime": "^7.0.0",
"@types/node": "^18.11.18",
"array-range": "^1.0.1",
"zip-object": "^0.1.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.0",
"eslint": "^6.0.0",
"eslint-plugin-flowtype": "^4.0.0",
"flow-bin": "^0.100.0",
"flow-copy-source": "^2.0.0",
"mocha": "^7.0.1",
"rimraf": "^4.1.1",
"sinon": "^7.2.6",
"typescript": "^4.9.4"
}
}