forked from Currency-One/form-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.74 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": "@currency-one/form-utils",
"version": "1.0.10",
"description": "Form utils",
"keywords": [
"form-utils",
"form",
"utils"
],
"homepage": "https://github.com/Currency-One/form-utils",
"repository": {
"type": "git",
"url": "git+https://github.com/Currency-One/form-utils.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"all": "npm run lint && npm run test && npm run build && npm run build:doc",
"build": "npm run clean && npm run tsc",
"tsc": "tsc",
"lint": "tslint -p . -t codeFrame",
"test": "jest --coverage",
"clean": "rimraf ./dist",
"fix": "npm run lint --fix",
"publish-package": "npm run all && npm version patch && npm publish --access public",
"build:doc": "jsdoc2md --files ./lib/*.ts --configure ./jsdoc2md.json > ./DOCS.md"
},
"peerDependencies": {},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^26.0.19",
"jest": "^26.6.3",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^6.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"tslint": "^6.1.1",
"typescript": "^4.1.3"
},
"author": "Damian Majsner <[email protected]>",
"license": "MIT",
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testMatch": [
"**/__tests__/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"collectCoverageFrom": [
"lib/**/*.{ts,tsx}",
"!**/node_modules/**"
]
},
"bugs": {
"url": "https://github.com/Currency-One/form-utils/issues"
},
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {}
}