-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.88 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
62
63
64
65
{
"name": "snowpack-plugin-hash",
"version": "0.16.0",
"description": "Content-hash for Snowpack",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"typings": "./lib/index.d.ts",
"sideEffects": false,
"dependencies": {
"@typed/content-hash": "^0.10.0",
"fp-ts": "^2.9.5",
"tslib": "^2.1.0",
"typed-colors": "^1.0.0",
"typed-figures": "^1.0.0"
},
"peerDependencies": {
"snowpack": "^3.0.11"
},
"devDependencies": {
"@typed/test": "^9.5.0",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"concurrently": "^6.0.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-custom-alias": "^1.2.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"snowpack": "^3.2.2",
"typescript": "^4.2.3"
},
"scripts": {
"build": "rimraf lib && tsc --outDir lib",
"test": "concurrently 'npm:lint' 'npm:unit-test'",
"unit-test": "echo 'No tests, yet!'",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"precommit": "lint-staged",
"preversion": "npm test && npm run build",
"postversion": "npm publish --access=public",
"watch": "npm run build -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TylorS/snowpack-plugin-hash.git"
},
"keywords": [
"Snowpack",
"Plugin",
"Content Hash",
"Hash"
],
"author": "Tylor Steinberger <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TylorS/snowpack-plugin-hash/issues"
},
"homepage": "https://github.com/TylorS/snowpack-plugin-hash#readme"
}