-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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": "css-houdini-lines",
"version": "1.0.4",
"description": "CSS Houdini Background Lines",
"source": "src/index.js",
"main": "dist/lines.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "microbundle --entry src/index.js --output dist/lines.js --no-pkg-main --format modern --no-sourcemap",
"prepublish": "npm run build",
"test": "npm run test:copy && npm run test:server",
"test:copy": "cp -fv ./src/index.js ./test/lines.js",
"test:server": "node ./server.js"
},
"keywords": [
"houdini",
"css",
"css-houdini",
"PaintWorklet",
"paint",
"worklet"
],
"author": {
"name": "Joan León",
"email": "[email protected]",
"twitter": "@nucliweb",
"web": "https://joanleon.dev"
},
"license": "MIT",
"eslintConfig": {
"extends": [
"./node_modules/@s-ui/lint/eslintrc.js"
]
},
"prettier": "./node_modules/@s-ui/lint/.prettierrc.js",
"stylelint": {
"extends": "./node_modules/@s-ui/lint/stylelint.config.js"
},
"devDependencies": {
"@s-ui/lint": "^3.25.0",
"express": "^4.17.1",
"microbundle": "^0.12.4",
"rimraf": "^3.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CSSHoudini/css-houdini.git"
},
"bugs": {
"url": "https://github.com/CSSHoudini/css-houdini/issues"
},
"homepage": "https://github.com/CSSHoudini/css-houdini/tree/main/src/lines"
}