forked from ampproject/amp-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.79 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
{
"name": "root",
"private": true,
"scripts": {
"build": "lerna run build",
"install": "npm install packages/* && lerna bootstrap --hoist",
"generate:changelog": "lerna-changelog",
"test": "npm-run-all build test:node test:browser lint",
"test:node": "jasmine --config=jasmine.json && cd packages/linter && npm test",
"test:browser": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
"lint": "eslint \"**/*.js\" --ignore-path .gitignore",
"lint:fix": "eslint \"**/*.js\" --fix --ignore-path .gitignore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ampproject/amp-toolbox.git"
},
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "0.9.0",
"@babel/core": "7.4.5",
"@pika/pack": "0.3.7",
"@pika/plugin-build-node": "0.3.16",
"@pika/plugin-build-types": "0.3.16",
"@pika/plugin-simple-bin": "0.3.16",
"@pika/plugin-ts-standard-pkg": "0.3.16",
"@types/cheerio": "0.22.11",
"@types/debug": "4.1.4",
"@types/diff": "4.0.2",
"@types/escape-html": "0.0.20",
"@types/execa": "0.9.0",
"@types/nock": "10.0.1",
"@types/node-fetch": "2.3.5",
"amphtml-validator": "1.0.23",
"babel-plugin-filter-imports": "3.0.0",
"colors": "1.3.3",
"diff": "4.0.1",
"eslint": "5.16.0",
"eslint-config-google": "0.13.0",
"fetch-mock": "7.3.3",
"html-minifier": "4.0.0",
"jasmine": "3.4.0",
"jasmine-spec-reporter": "4.2.1",
"jimp": "0.6.4",
"karma": "4.1.0",
"karma-chrome-launcher": "2.2.0",
"karma-jasmine": "2.0.1",
"lerna": "3.14.1",
"lerna-changelog": "0.8.2",
"lru-cache": "5.1.1",
"mock-express-request": "0.2.2",
"mock-express-response": "0.2.2",
"nock": "10.0.6",
"npm-run-all": "4.1.5",
"prettier": "1.17.1",
"rollup": "1.12.4",
"rollup-plugin-babel": "4.3.2",
"rollup-plugin-commonjs": "10.0.0",
"rollup-plugin-filesize": "6.1.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.0.0",
"rollup-plugin-serve": "1.0.1",
"semver": "6.1.1",
"tap-parser": "9.3.2",
"tar": "4.4.8",
"typescript": "3.5.1"
},
"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-update-cache": "file:packages/update-cache"
}
}