-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 862 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 862 Bytes
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
{
"name": "webfeed-css",
"version": "1.0.2",
"description": "A micro-library that stores the minimum CSS required to render a Webfeed",
"author": "Paul Gordon",
"license": "unlicense",
"repository": {
"type": "git",
"url": "https://github.com/squaresapp/webfeed-css"
},
"bugs": {
"url": "https://github.com/squaresapp/webfeed-css/issues"
},
"main": "webfeedcss.js",
"browser": "webfeedcss.js",
"types": "webfeedcss.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"LICENSE.txt",
"webfeed.css",
"webfeedcss.js",
"webfeedcss.d.ts",
"webfeedcss.d.ts.map",
"webfeedcss.min.js"
],
"scripts": {
"test": "exit 0",
"release": "cd ./+build && cp ../package.json ./package.json && cp ../webfeed.css ./webfeed.css && np && cp ./package.json ../package.json"
},
"devDependencies": {
"@squaresapp/rawjs": "^1.3.12"
}
}