-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "@ampproject/bento-compiler",
"version": "0.0.14",
"description": "Server-render amp components",
"author": "The AMP HTML Authors",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"prettify": "npx prettier --write src test scripts",
"prebench": "npm run build",
"bench": "node scripts/benchmark.js",
"build": "node scripts/build.js",
"check-types": "tsc --project tsconfig.json",
"gen-types": "tsc --project tsconfig-gentypes.json",
"test": "npm run check-types && npm run unit",
"preunit": "npm run build",
"unit": "ava dist/test/**/test-*.js",
"prerelease": "npm run gen-types",
"release": "np"
},
"devDependencies": {
"@types/parse5": "6.0.3",
"ava": "4.0.1",
"benchmark": "2.1.4",
"esbuild": "0.14.21",
"globby": "13.1.1",
"np": "7.6.0",
"parse5": "6.0.1",
"prettier": "2.5.1",
"typescript": "4.5.5"
},
"dependencies": {
"@ampproject/worker-dom": "0.33.0"
},
"np": {
"branch": "main",
"yarn": false
}
}