-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.3 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
{
"name": "echo-proxy",
"version": "1.12.0",
"description": "Fun with proxies. Repeats after you.",
"main": "dist/echo.js",
"types": "dist/declarations.d.ts",
"scripts": {
"build": "npx eslint src/*.ts && npx rollup -c",
"test": "npx mocha",
"ci": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrjacobbloom/echo.git"
},
"author": "Jacob Bloom",
"license": "ISC",
"bugs": {
"url": "https://github.com/mrjacobbloom/echo/issues"
},
"homepage": "https://github.com/mrjacobbloom/echo#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^10.2.0",
"rollup": "^1.17.0",
"rollup-plugin-banner": "^0.2.0",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"sinon": "^9.0.0",
"tslib": "^1.10.0",
"typescript": "^3.5.3"
},
"engines": {
"node": ">=11"
},
"runkitExample": "require('echo-proxy');\nrequire('@runkit/mrjacobbloom/echo-output-value-viewer/latest')();\n\n// Edit the following code and click Run.\n// If everything works correctly, it should print the code you entered!\n\nEcho[234].foo(null, new Echo, [true]).bar[''][Symbol('qux')]"
}