-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
45 lines (45 loc) · 1.32 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
{
"name": "css-paint-polyfill",
"version": "3.4.0",
"description": "A polyfill for the CSS Paint API, with special browser optimizations.",
"source": "src/index.js",
"main": "dist/css-paint-polyfill.js",
"scripts": {
"build": "microbundle -f iife && cp -r demo dist/",
"start": "concurrently serve \"microbundle watch -f iife\"",
"test": "eslint src",
"release": "npm run -s build && npm t && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish",
"deploy": "cp -rf demo build && cp -r dist build/ && sed -i '' 's/\\.\\.\\/dist/dist/' build/index.html && gh-pages -d build && rm -rf build"
},
"eslintConfig": {
"extends": "eslint-config-developit",
"rules": {
"prefer-spread": 0
}
},
"files": [
"src",
"dist"
],
"keywords": [
"paint",
"worklet",
"polyfill",
"houdini",
"custom paint",
"css paint",
"paint worklet",
"worklet"
],
"author": "Google Chrome Developers <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"concurrently": "^3.5.1",
"eslint": "^7.29.0",
"eslint-config-developit": "^1.2.0",
"gh-pages": "^1.1.0",
"microbundle": "^0.5.1",
"serve": "^11.3.0",
"transpiler-lite": "gist:781ef9620da8a30228b9f0c6e21fa7f6"
}
}