-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 loc) · 2.78 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "livepack",
"version": "0.8.2",
"description": "Serialize live running code to Javascript",
"main": "index.js",
"exports": {
".": {
"import": "./es/index.js",
"require": "./index.js"
},
"./register": {
"import": "./es/register.js",
"require": "./register.js"
},
"./instrument": {
"import": "./es/instrument.js",
"require": "./instrument.js"
}
},
"bin": "lib/cli.js",
"files": [
"register.js",
"instrument.js",
"lib/**/*.js",
"es/**/*.js"
],
"author": {
"name": "Overlook Motel"
},
"repository": {
"type": "git",
"url": "https://github.com/overlookmotel/livepack.git"
},
"bugs": {
"url": "https://github.com/overlookmotel/livepack/issues"
},
"dependencies": {
"@babel/core": "^7.23.6",
"@babel/generator": "^7.23.6",
"@babel/helper-module-transforms": "^7.23.3",
"@babel/parser": "^7.23.6",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@babel/traverse": "^7.23.6",
"@babel/types": "^7.23.6",
"babel-plugin-dynamic-import-node": "^2.3.3",
"base32.js": "^0.1.0",
"convert-source-map": "^2.0.0",
"find-cache-dir": "^3.3.2",
"find-up": "^5.0.0",
"is-it-type": "^5.1.2",
"lodash": "^4.17.21",
"native-type-of": "^2.0.0",
"pirates": "^4.0.6",
"reserved-words": "^0.1.2",
"simple-invariant": "^2.0.1",
"source-map": "^0.5.7",
"source-map-support": "^0.5.21",
"strip-json-comments": "^3.1.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/plugin-transform-arrow-functions": "^7.23.3",
"@babel/plugin-transform-strict-mode": "^7.23.3",
"@jest/test-sequencer": "^29.7.0",
"@overlookmotel/eslint-config": "^10.1.0",
"@overlookmotel/eslint-config-jest": "^6.0.1",
"@overlookmotel/eslint-config-node": "^4.1.0",
"collect-v8-coverage": "^1.0.2",
"eslint": "^8.56.0",
"expect": "^29.7.0",
"jest": "^29.7.0",
"jest-expect-arguments": "^1.0.0",
"jest-extended": "^4.0.2",
"jest-light-runner": "^0.6.0",
"jest-matcher-utils": "^29.7.0",
"jest-runner-eslint": "^2.1.2",
"jest-util": "^29.7.0",
"npm-run-all": "^4.1.5",
"parse-node-version": "^2.0.0",
"supports-color": "^9.4.0",
"tinypool": "^0.8.1"
},
"keywords": [
"build",
"live",
"code",
"package",
"bundle"
],
"scripts": {
"test": "npm run lint && npm run test-main",
"lint": "jest --config=jest-eslint.config.js",
"lint-fix": "eslint . --fix",
"test-main": "jest",
"cover": "npm-run-all -c cover-main cover-cleanup",
"cover-main": "jest --coverage",
"cover-cleanup": "rm -rf coverage"
},
"engines": {
"node": ">=18"
},
"readmeFilename": "README.md",
"license": "MIT"
}