forked from ampproject/amp-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.87 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
{
"name": "root",
"private": true,
"scripts": {
"build": "npx lerna run build",
"test": "npm-run-all build test:node test:browser lint",
"test:node": "jasmine --config=jasmine.json",
"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-beta.7",
"@babel/core": "7.3.4",
"babel-plugin-filter-imports": "2.0.4",
"colors": "1.3.3",
"diff": "4.0.1",
"eslint": "5.15.1",
"eslint-config-google": "0.12.0",
"html-minifier": "3.5.21",
"jasmine": "3.3.1",
"jasmine-spec-reporter": "4.2.1",
"karma": "4.0.1",
"karma-chrome-launcher": "2.2.0",
"karma-jasmine": "2.0.1",
"mock-express-request": "0.2.2",
"mock-express-response": "0.2.2",
"nock": "10.0.6",
"npm-run-all": "4.1.5",
"rollup": "1.6.0",
"rollup-plugin-babel": "4.3.2",
"rollup-plugin-commonjs": "9.2.1",
"rollup-plugin-filesize": "6.0.1",
"rollup-plugin-json": "3.1.0",
"rollup-plugin-node-resolve": "4.0.1",
"rollup-plugin-serve": "1.0.1",
"semver": "6.0.0"
},
"dependencies": {
"amp-toolbox-cache-list": "file:packages/cache-list",
"amp-toolbox-cache-url": "file:packages/cache-url",
"amp-toolbox-cli": "file:packages/cli",
"amp-toolbox-core": "file:packages/core",
"amp-toolbox-cors": "file:packages/cors",
"amp-toolbox-optimizer": "file:packages/optimizer",
"amp-toolbox-optimizer-express": "file:packages/optimizer-express",
"amp-toolbox-runtime-version": "file:packages/runtime-version",
"amp-toolbox-update-cache": "file:packages/update-cache"
}
}