-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.16 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
{
"name": "@rhtml/di",
"version": "0.0.133",
"description": "RHTML simplest Dependency Injection",
"scripts": {
"start": "npx gapi start --local --path=./example/main.ts",
"module": "npx gapi start --local --path=./example/module/main.ts",
"patch": "npm run build && npm version patch && npm publish --update-readme --access public && npm run delete-dist",
"delete-dist": "rm -rf dist",
"clean": "git clean -dxf",
"test": "npx jest",
"lint": "npx eslint . --ext .ts",
"lint-fix": "npx eslint . --fix --ext .ts",
"build": "rm -rf dist && tsc",
"build-prod": "npx gapi build --local --path=./src/index.ts"
},
"repository": {
"type": "git",
"url": "[email protected]:r-html/rhtml.git"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^24.0.18",
"@abraham/reflection": "^0.7.0",
"jest": "^24.9.0",
"ts-jest": "25.2.1"
},
"author": "Kristiyan Tachev",
"license": "MIT",
"browserslist": [
"last 1 chrome versions"
],
"files": [
"dist",
"module"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts"
}