This repository has been archived by the owner on Aug 18, 2023. It is now read-only.
forked from ampproject/amp-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 4.13 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "root",
"private": true,
"scripts": {
"build": "lerna run build",
"bootstrap": "lerna bootstrap --hoist",
"changelog": "lerna-changelog",
"clean": "git clean -xdf",
"postinstall": "run-s bootstrap link",
"link": "lerna link",
"generate:changelog": "lerna-changelog",
"prepublishOnly": "npm run build",
"publish": "lerna publish --exact",
"publish:canary": "lerna publish --exact --preid canary --dist-tag canary",
"test": "npm-run-all build test:node test:browser lint",
"test:node": "jest",
"test:optimizer:snapshot": "OPTIMIZER_SNAPSHOT=true jest",
"test:page-experience:snapshot": "PAGE_EXPERIENCE_SNAPSHOT=true jest",
"test:browser": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
"format": "prettier --config=prettier.config.js --write '**/*.{js,ts}'",
"lint": "eslint -c .eslintrc.json .",
"lint:fix": "eslint -c .eslintrc.json --fix '**/*.{js,ts}'",
"reset": "run-s clean bootstrap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ampproject/amp-toolbox.git"
},
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "0.26.0",
"@babel/core": "7.13.10",
"@types/cheerio": "0.22.28",
"@types/debug": "4.1.5",
"@types/diff": "5.0.0",
"@types/escape-html": "1.0.0",
"@types/jest": "26.0.21",
"@types/nock": "11.1.0",
"@types/node-fetch": "2.5.8",
"@typescript-eslint/eslint-plugin": "4.18.0",
"@typescript-eslint/parser": "4.18.0",
"amphtml-validator": "1.0.34",
"babel-plugin-filter-imports": "4.0.0",
"colorette": "1.2.2",
"cssnano-simple": "1.2.2",
"diff": "5.0.0",
"eslint": "7.22.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-prettier": "3.3.1",
"execa": "5.0.0",
"fetch-mock": "9.11.0",
"file-url": "3.0.0",
"husky": "5.2.0",
"jest": "26.6.3",
"jimp": "0.16.1",
"js-beautify": "1.13.5",
"karma": "6.2.0",
"karma-chrome-launcher": "3.1.0",
"karma-jasmine": "4.0.1",
"lerna": "4.0.0",
"lerna-changelog": "1.0.1",
"lighthouse": "7.3.0",
"lint-staged": "10.5.4",
"lru-cache": "6.0.0",
"mock-express-request": "0.2.2",
"mock-express-response": "0.3.0",
"nanoid": "3.1.22",
"needle": "2.6.0",
"nock": "13.0.11",
"npm-run-all": "4.1.5",
"postcss": "8.2.10",
"postcss-safe-parser": "5.0.2",
"prettier": "2.2.1",
"prettier-eslint": "12.0.0",
"probe-image-size": "7.0.1",
"rollup": "2.42.3",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-filesize": "9.1.1",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-serve": "1.1.0",
"semver": "7.3.4",
"tap-parser": "10.1.0",
"tar": "6.1.0",
"terser": "5.6.0",
"throat": "6.0.1",
"ts-jest": "26.5.4",
"typescript": "4.2.3"
},
"dependencies": {
"@ampproject/toolbox-cache-list": "file:packages/cache-list",
"@ampproject/toolbox-cache-url": "file:packages/cache-url",
"@ampproject/toolbox-cli": "file:packages/cli",
"@ampproject/toolbox-core": "file:packages/core",
"@ampproject/toolbox-cors": "file:packages/cors",
"@ampproject/toolbox-linter": "file:packages/linter",
"@ampproject/toolbox-optimizer": "file:packages/optimizer",
"@ampproject/toolbox-optimizer-express": "file:packages/optimizer-express",
"@ampproject/toolbox-page-experience": "file:packages/page-experience",
"@ampproject/toolbox-runtime-fetch": "file:packages/runtime-fetch",
"@ampproject/toolbox-runtime-version": "file:packages/runtime-version",
"@ampproject/toolbox-script-csp": "file:packages/script-csp",
"@ampproject/toolbox-update-cache": "file:packages/update-cache",
"@ampproject/toolbox-validator-rules": "file:packages/validator-rules",
"lighthouse-plugin-amp": "file:packages/lighthouse-plugin-amp"
},
"husky": {
"hooks": {
"pre-push": "npm test",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint -c .eslintrc.json --cache --fix",
"prettier --write"
]
}
}