-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
68 lines (68 loc) · 1.95 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
{
"name": "@ampproject/animations",
"version": "0.2.2",
"description": "JavaScript animation functions and helpers.",
"main": "dist/animations.js",
"module": "dist/animations.mjs",
"repository": {
"type": "git",
"url": "https://github.com/ampproject/animations.git"
},
"author": "The AMP HTML Authors",
"license": "Apache-2.0",
"scripts": {
"build": "rollup -c",
"build-watch": "yarn build --watch",
"clean": "rm -rf dist/ build/",
"predemo": "yarn build",
"demo": "http-server & opener http://localhost:8080/docs/demo & wait",
"dist": "yarn clean && yarn build",
"karma": "karma start --browsers Chrome,Firefox karma.conf.js",
"test": "yarn karma --single-run",
"test-watch": "yarn karma --auto-watch",
"test-action": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
"size": "yarn build && yarn filesize",
"prepublishOnly": "yarn dist"
},
"devDependencies": {
"@ampproject/filesize": "4.2.0",
"@ampproject/rollup-plugin-closure-compiler": "0.26.0",
"@types/chai": "4.2.11",
"@types/mocha": "7.0.2",
"acorn-walk": "7.1.1",
"chai": "4.2.0",
"http-server": "0.12.3",
"karma": "5.1.0",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "3.1.0",
"karma-firefox-launcher": "1.3.0",
"karma-ie-launcher": "1.0.0",
"karma-mocha": "2.0.1",
"karma-typescript": "5.0.3",
"magic-string": "0.25.7",
"mocha": "8.0.1",
"opener": "1.5.1",
"rollup": "2.15.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-typescript": "1.0.1",
"rollup-plugin-terser": "6.1.0",
"typescript": "3.9.5",
"tslib": "2.0.0"
},
"filesize": [
{
"path": "./dist/animations.mjs",
"compression": "brotli",
"maxSize": "2 kB"
},
{
"path": "./dist/animations.js",
"compression": "brotli",
"maxSize": "2 kB"
}
],
"files": [
"dist"
]
}