-
Notifications
You must be signed in to change notification settings - Fork 272
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "pinme",
"version": "2.0.11",
"publishConfig": {
"access": "public"
},
"description": "Deploy Your Frontend In a Single Command",
"main": "dist/index.js",
"scripts": {
"build": "node build.js",
"dev": "node build.js",
"lint": "eslint --ext .ts,.mjs bin test tests vitest.config.ts vitest.mutation.config.ts",
"typecheck": "tsc --noEmit --project tsconfig.test.json",
"test": "NODE_OPTIONS=--require=$PWD/test/setup/webcrypto.cjs vitest run test/unit test/integration test/login-tracking-source.test.mjs tests",
"test:coverage": "NODE_OPTIONS=--require=$PWD/test/setup/webcrypto.cjs vitest run --coverage test/unit test/integration test/login-tracking-source.test.mjs tests",
"test:cli": "npm run build && NODE_OPTIONS=--require=$PWD/test/setup/webcrypto.cjs vitest run test/cli",
"test:pack": "npm run build && NODE_OPTIONS=--require=$PWD/test/setup/webcrypto.cjs vitest run test/pack",
"test:mutation": "stryker run",
"verify": "npm run lint && npm run typecheck && npm run test && npm run test:coverage && npm run build && npm run test:cli && npm run test:pack",
"prepublishOnly": "npm run build"
},
"bin": {
"pinme": "./dist/index.js"
},
"files": [
"dist/index.js"
],
"keywords": [
"ipfs",
"cli",
"deploy",
"frontend"
],
"author": "Glitter Protocol",
"license": "MIT",
"dependencies": {
"adm-zip": "^0.5.17",
"archiver": "7.0.1",
"axios": "1.18.1",
"base-x": "5.0.1",
"bip39": "3.1.0",
"chalk": "2.4.2",
"commander": "11.1.0",
"crypto-js": "4.2.0",
"dayjs": "1.11.7",
"figlet": "1.7.0",
"form-data": "4.0.6",
"formdata-node": "6.0.3",
"fs-extra": "11.2.0",
"inquirer": "8.2.7",
"ora": "3.4.0",
"uuid": "9.0.1"
},
"devDependencies": {
"@stryker-mutator/core": "^7.3.0",
"@stryker-mutator/vitest-runner": "^7.3.0",
"@types/adm-zip": "^0.5.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^0.34.6",
"dotenv": "16.5.0",
"esbuild": "0.25.2",
"eslint": "8.33.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"execa": "^7.2.0",
"fast-check": "^3.23.2",
"nock": "^13.5.6",
"prettier": "2.8.3",
"tmp-promise": "^3.0.3",
"typescript": "^5.4.5",
"vitest": "^0.34.6"
},
"engines": {
"node": ">= 16.13.0"
}
}