-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
59 lines (59 loc) · 1.64 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
{
"name": "@velcro/runner",
"version": "0.56.2",
"description": "Opinionated tool for easily bundling and running code from anywhere",
"keywords": [
"velcro",
"resolve",
"npm",
"resolution",
"module",
"browser",
"unpkg"
],
"author": "Geoff Goodman <ggoodman@gmail.com>",
"homepage": "/~https://github.com/ggoodman/velcro",
"license": "MIT",
"browser": "./dist/dist-browser/index.js",
"main": "./dist/dist-main/index.js",
"module": "./dist/dist-module/index.js",
"unpkg": "./dist/dist-unpkg/index.min.js",
"types": "./dist/dist-main/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git@github.com:ggoodman/velcro.git"
},
"scripts": {
"build": "rollup -c",
"build:dev": "rollup -c --watch",
"build:api": "api-extractor run --local -c ./api-extractor.json",
"build:readme": "cat README.md | sed \"s~tree/.*/docs~tree/v$(jq -r .version package.json)/docs~g\" > README.md",
"preversion": "npm run build",
"version": "npm run build:api || : && npm run build:readme"
},
"prettier": {
"printWidth": 100,
"singleQuote": true
},
"devDependencies": {
"@microsoft/api-documenter": "^7.8.27",
"@microsoft/api-extractor": "^7.9.5",
"rollup": "^2.26.3",
"typescript": "^4.0.3"
},
"dependencies": {
"@velcro/bundler": "^0.56.2",
"@velcro/common": "^0.56.2",
"@velcro/resolver": "^0.56.2",
"@velcro/strategy-cdn": "^0.56.2",
"@velcro/strategy-compound": "^0.56.2",
"@velcro/strategy-memory": "^0.56.2"
},
"gitHead": "f63b45ad688f2fe9768349afeaf449c016bf33ef"
}