-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
61 lines (61 loc) · 1.45 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
{
"name": "formalistic",
"version": "2.0.0",
"description": "Handle form data and form validation",
"main": "lib/index.js",
"types": "formalistic.d.ts",
"files": [
"src",
"lib",
"formalistic.d.ts"
],
"scripts": {
"prepare": "husky install",
"build": "rm -rf lib/* && babel src -d lib",
"test": "npm run test:unit && npm run test:lint && npm run test:typedefinitions",
"test:unit": "jest --coverage --collectCoverageFrom=\"src/**/*.js\"",
"test:lint": "eslint src/**/*.js test/**/*.js",
"test:watch": "jest --coverage --collectCoverageFrom=\"src/**/*.js\" --watchAll",
"test:typedefinitions": "tsd"
},
"repository": {
"type": "git",
"url": "git://github.com/bripkens/formalistic.git"
},
"keywords": [
"formalistic",
"form",
"model",
"validation",
"touched",
"dirty",
"pristine",
"react",
"angular",
"vue"
],
"author": {
"name": "Benjamin Blackmore",
"email": "[email protected]",
"url": "http://github.com/bripkens"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bripkens/formalistic/issues"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/eslint-parser": "^7.14.7",
"@babel/preset-env": "^7.14.8",
"babel-jest": "^27.0.6",
"coveralls": "^3.1.1",
"eslint": "^7.31.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"tsd": "^0.19.1"
},
"tsd": {
"directory": "test"
},
"dependencies": {}
}