-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.16 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.16 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
{
"name": "hypnode",
"version": "1.3.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "run-p -r \"build --watch\"",
"build": "tsc",
"minify": "terser-folder ./dist -e -x .js -o ./dist",
"release": "run-s build minify",
"lint": "eslint ./src/**/*.ts",
"test": "jest ./tests/src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhdevuk/hypnode.git"
},
"keywords": [
"jsx",
"dom",
"html"
],
"files": [
"dist"
],
"author": "James Hill",
"license": "ISC",
"bugs": {
"url": "https://github.com/jhdevuk/hypnode/issues"
},
"homepage": "https://github.com/jhdevuk/hypnode#readme",
"devDependencies": {
"@types/jest": "^26.0.10",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"terser-folder": "^2.0.0",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7"
}
}