-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.73 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
{
"name": "form-blueprint",
"version": "0.0.0",
"description": "Helpers for validating and handling form blueprint objects.",
"author": "Tyler Johnson <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/tyler-johnson/form-blueprint.git"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"clean": "shx rm -rf lib docs",
"build:full": "npm-run-all clean build",
"build:typescript": "tsc -p tsconfig.build.json",
"build:docs": "typedoc --out docs src/ && shx touch docs/.nojekyll",
"build": "run-p build:typescript build:docs",
"test:jest": "cross-env NODE_ENV=test jest -i --verbose",
"test": "npm-run-all lint test:jest",
"prepare": "npm-run-all build",
"autorelease": "pagedip-autorelease"
},
"dependencies": {
"@types/color": "^3.0.2",
"@types/lodash.topath": "^4.5.6",
"color": "^3.1.3",
"immutable": "^4.0.0",
"lodash.topath": "^4.5.2",
"tslib": "^2.3.1"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.15.8",
"@pagedip/tool-autorelease": "^3.9.7",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"cross-env": "^7.0.3",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-no-unsanitized": "^3.2.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"shx": "^0.3.3",
"ts-jest": "^27.0.7",
"typedoc": "^0.22.7",
"typescript": "^4.4.4"
},
"keywords": [],
"license": "MIT",
"files": [
"lib"
]
}