-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.48 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.48 KB
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
{
"name": "@all-in-js/utils",
"version": "1.1.3",
"author": "famanoder",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"main": "./dist/utils.cjs.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/all-in-js/utils"
},
"scripts": {
"build": "node ./scripts/build.js",
"prepublishOnly": "rm -rf dist && npm run build"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.9.15",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"rollup": "^2.27.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-typescript2": "^0.27.2",
"typescript": "^4.0.2",
"yargs-parser": "^20.0.0"
},
"dependencies": {
"@babel/generator": "^7.7.7",
"@babel/parser": "^7.7.7",
"@babel/traverse": "^7.7.4",
"@babel/types": "^7.7.4",
"@types/babel__generator": "^7.6.1",
"@types/babel__traverse": "^7.0.14",
"@types/chalk": "^2.2.0",
"@types/fs-extra": "^9.0.1",
"@types/node": "^14.10.1",
"@types/node-fetch": "^2.5.7",
"@types/normalize-path": "^3.0.0",
"archiver": "^3.1.1",
"chalk": "^3.0.0",
"execa": "^3.4.0",
"fs-extra": "^8.1.0",
"node-fetch": "^2.6.0",
"normalize-path": "^3.0.0",
"ora": "^4.0.2",
"portfinder": "^1.0.25"
}
}