forked from ampproject/amp-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.94 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
{
"name": "root",
"private": true,
"scripts": {
"build": "lerna run build",
"bootstrap": "lerna bootstrap",
"changelog": "lerna-changelog",
"postinstall": "run-s bootstrap link",
"link": "lerna link",
"generate:changelog": "lerna-changelog",
"test": "npm-run-all build test:node test:browser lint",
"test:node": "jasmine --config=jasmine.json && lerna run test",
"test:browser": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
"lint": "eslint . && lerna run lint",
"lint:fix": "eslint --fix . && lerna run lint:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ampproject/amp-toolbox.git"
},
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "0.13.0",
"@babel/core": "7.7.5",
"@types/cheerio": "0.22.15",
"@types/debug": "4.1.5",
"@types/diff": "4.0.2",
"@types/escape-html": "0.0.20",
"@types/nock": "11.1.0",
"@types/node-fetch": "2.5.4",
"amphtml-validator": "1.0.29",
"babel-plugin-filter-imports": "4.0.0",
"colors": "1.4.0",
"diff": "4.0.1",
"eslint": "6.7.2",
"eslint-config-google": "0.14.0",
"fetch-mock": "8.0.1",
"html-minifier": "4.0.0",
"husky": "3.1.0",
"jasmine": "3.5.0",
"jasmine-spec-reporter": "4.2.1",
"jimp": "0.9.3",
"karma": "4.4.1",
"karma-chrome-launcher": "3.1.0",
"karma-jasmine": "2.0.1",
"lerna": "3.19.0",
"lerna-changelog": "0.8.3",
"lighthouse": "^5.6.0",
"lru-cache": "5.1.1",
"mock-express-request": "0.2.2",
"mock-express-response": "0.2.2",
"nock": "11.7.0",
"npm-run-all": "4.1.5",
"prettier": "1.19.1",
"rollup": "1.27.8",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-filesize": "6.2.1",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-serve": "1.0.1",
"semver": "6.3.0",
"tap-parser": "10.0.1",
"tar": "5.0.5",
"throat": "^5.0.0",
"typescript": "3.7.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-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"
}
}
}