-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.13 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
{
"name": "ui-dom",
"version": "1.1.6",
"description": "",
"main": "./dist/ui-dom-expose",
"types": "./dist/ui-dom-types.d.ts",
"typings": "./dist/ui-dom-types.d.ts",
"files": ["dist"],
"scripts": {
"test": "jest --watchAll --coverage",
"lint": "eslint --ext .ts --ext .tsx --fix --ignore-pattern '**/*.d.*' --ignore-pattern node_modules . && echo 'Linted Successfully!'",
"tsc:compile": "rm -rf ./dist && tsc -p ./tsconfig.json --declarationMap false --sourceMap false --outDir dist",
"tsc:test": "tsc -p ./tsconfig.json --noEmitOnError false --watch",
"dts": "dts-bundle-generator -o dist/ui-dom-types.d.ts lib/ui-dom-expose.ts"
},
"author": "hmd-amini",
"license": "ISC",
"dependencies": {
"@babel/core": "7.8.7",
"@babel/preset-env": "7.8.7",
"@babel/preset-typescript": "7.8.3",
"@types/jest": "25.1.2",
"@typescript-eslint/eslint-plugin": "2.25.0",
"@typescript-eslint/parser": "2.25.0",
"eslint": "6.8.0",
"jest": "25.1.0",
"typescript": "3.7.5",
"ui-wrapper": "github:hramini/ui-wrapper#testBuilder",
"virtual-document": "github:hramini/virtual-document"
}
}