-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.97 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
{
"name": "@space-kit/hat",
"version": "1.0.2",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"scripts": {
"watch": "tsc --module esnext --outDir dist/esm --watch",
"test": "jest --config jestconfig.json",
"test:watch": "jest --config jestconfig.json --watch",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"build:esm": "tsc --module esnext --outDir dist/esm",
"lint": "eslint \"src/**/*.ts\" --max-warnings 0 --fix",
"prepare": "rm -rf dist && npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run lint && git add -A src",
"postversion": "git push && git push --tags",
"example": "parcel example/index.html",
"build-example": "parcel build example/index.html --public-url ./",
"predeploy": "rm -rf dist && npm run build && npm run build-example --public-url hat",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ashikmeerankutty/hat.git"
},
"keywords": [
"Title",
"SVG",
"favicon"
],
"author": "Ashik Meerankutty",
"license": "MIT",
"bugs": {
"url": "https://github.com/ashikmeerankutty/hat/issues"
},
"homepage": "https://github.com/ashikmeerankutty/hat/#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"babel-plugin-inferno": "^6.1.1",
"babel-preset-es2015": "^6.24.1",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"gh-pages": "^3.1.0",
"inferno": "^7.4.6",
"jest": "^26.6.3",
"parcel": "^1.12.4",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
}
}