-
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.08 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.08 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": "xs-sandbox",
"version": "1.0.0",
"publishConfig": {
"access": "public"
},
"description": "JavaScript sandbox with snapshotting",
"main": "dist/index.js",
"module": "dist/index.mjs",
"keywords": [
"JavaScript",
"sandbox",
"snapshot"
],
"scripts": {
"test": "mocha",
"build": "make"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coder-mike/xs-sandbox.git"
},
"bugs": {
"url": "https://github.com/coder-mike/xs-sandbox/issues"
},
"files": [
"dist/index.js",
"dist/index.mjs",
"dist/**/*.d.ts"
],
"author": "Michael Hunter",
"license": "MIT, Apache-2.0, LGPL-3.0",
"homepage": "https://github.com/coder-mike/xs-sandbox#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.6",
"microvium": "^0.0.25",
"mocha": "^10.2.0",
"rollup": "^3.18.0",
"source-map-support": "^0.5.21",
"ts-lib": "^0.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}