-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
83 lines (83 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
76
77
78
79
80
81
82
83
{
"name": "@endo/bundle-source",
"version": "2.7.0",
"description": "Create source bundles from ES Modules",
"type": "module",
"main": "src/index.js",
"bin": {
"bundle-source": "./src/tool.js"
},
"exports": {
".": "./src/index.js",
"./exported.js": "./exported.js",
"./cache.js": "./cache.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "exit 0",
"prepack": "tsc --build jsconfig.build.json",
"postpack": "git clean -f '*.d.ts*'",
"test": "ava",
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js",
"test:xs": "exit 0",
"lint-fix": "eslint --fix '**/*.js'",
"lint-check": "yarn lint",
"lint-fix-jessie": "eslint -c '.eslintrc-jessie.js' --fix '**/*.js'",
"lint-check-jessie": "eslint -c '.eslintrc-jessie.js' '**/*.js'",
"lint": "eslint '**/*.js'"
},
"dependencies": {
"@agoric/babel-generator": "^7.17.4",
"@babel/parser": "^7.17.3",
"@babel/traverse": "^7.17.3",
"@endo/base64": "^0.2.34",
"@endo/compartment-mapper": "^0.9.1",
"@endo/init": "^0.5.59",
"@endo/promise-kit": "^0.2.59",
"@endo/where": "^0.3.4",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"acorn": "^8.2.4",
"jessie.js": "^0.3.2",
"rollup": "^2.79.1",
"source-map": "^0.7.3"
},
"devDependencies": {
"@endo/lockdown": "^0.1.31",
"@endo/ses-ava": "^0.2.43",
"ava": "^5.3.0",
"c8": "^7.14.0"
},
"keywords": [],
"files": [
"LICENSE*",
"SECURITY*",
"rollup-*.tgz",
"src",
"*.js",
"*.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/endojs/endo"
},
"author": "Endo contributors",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/endojs/endo/issues"
},
"homepage": "https://github.com/endojs/endo#readme",
"publishConfig": {
"access": "public"
},
"ava": {
"files": [
"test/**/test-*.js"
]
},
"eslintConfig": {
"extends": [
"plugin:@endo/internal"
]
}
}