forked from GoogleChromeLabs/container-query-polyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.57 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
{
"name": "container-query-polyfill",
"version": "1.0.1",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/GoogleChromeLabs/container-query-polyfill.git"
},
"type": "module",
"module": "dist/container-query-polyfill.modern.js",
"unpkg": "dist/container-query-polyfill.modern.js",
"publishConfig": {
"source": "src/index.ts"
},
"exports": {
"default": "./dist/container-query-polyfill.modern.js"
},
"files": [
"README.md",
"LICENSE",
"dist/*.js",
"package.json"
],
"scripts": {
"build:clean": "rimraf ./dist/",
"build:wpt": "microbundle -f modern --no-compress --define PACKAGE_VERSION=${npm_package_version},IS_WPT_BUILD=1",
"build": "microbundle -f modern --no-sourcemap --define PACKAGE_VERSION=${npm_package_version},IS_WPT_BUILD=0",
"lint": "eslint '**/*.ts'",
"prettier:fix": "prettier --write .",
"serve": "superstatic -p 9606 .",
"test": "node --loader ts-node/esm ./tests/wpt.ts"
},
"author": "Google Chrome Developers <[email protected]>",
"contributors": [
"Surma <[email protected]>"
],
"license": "Apache-2.0",
"devDependencies": {
"@types/async": "^3.2.14",
"@types/selenium-webdriver": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"async": "^3.2.4",
"browserstack-local": "^1.5.1",
"eslint": "^8.12.0",
"microbundle": "^0.15.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"selenium-webdriver": "^4.3.0",
"superstatic": "^8.0.0",
"ts-node": "^10.9.1"
}
}