-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
41 lines (41 loc) · 1.32 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
{
"name": "meta-code-verify",
"version": "4.0.0",
"description": "Browser extensions to verify code running in the browser against a published manifest",
"main": "none",
"repository": "[email protected]:facebookincubator/meta-code-verify.git",
"author": "Richard Hansen <[email protected]>",
"license": "MIT",
"type": "module",
"private": true,
"engines": {
"node": ">= 18"
},
"scripts": {
"build": "yarn run rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"watch": "yarn build -w",
"lint": "yarn beautify && yarn run eslint src/js/**",
"beautify": "yarn run prettier --write \"src/**/*.(ts|js)\" \"build/**/*.ts\"",
"test": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js"
},
"devDependencies": {
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/chrome": "^0.0.248",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^7.32.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.0.0",
"prettier": "^2.3.2",
"rollup": "^2.56.3",
"ts-jest": "^29.0.0",
"tslib": "^2.5.0",
"typescript": "^5.2.2"
},
"dependencies": {
"acorn": "^8.11.3"
}
}