-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
61 lines (61 loc) · 1.67 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
60
61
{
"name": "@velcro/bundler",
"version": "0.56.2",
"description": "Build a module graph of modules and serialize these to different formats",
"keywords": [
"velcro",
"resolve",
"npm",
"resolution",
"module",
"browser",
"unpkg"
],
"author": "Geoff Goodman <[email protected]>",
"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": "[email protected]: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",
"@types/estree": "^0.0.44",
"@types/jest": "^25.2.2",
"rollup": "^2.26.3",
"typescript": "^4.0.3"
},
"dependencies": {
"@velcro/common": "^0.56.2",
"@velcro/node-libs": "^0.56.2",
"@velcro/resolver": "^0.56.2",
"@velcro/runtime": "^0.56.2",
"acorn": "^7.2.0",
"magic-string": "^0.25.7"
},
"gitHead": "f63b45ad688f2fe9768349afeaf449c016bf33ef"
}