-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.85 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
66
67
68
{
"name": "@fountainhead/react-json-delta-inspector",
"version": "0.1.0",
"description": "Visualize and explore changes to JSON objects generated by 'json-delta', using 'react-inspector'",
"main": "dist-cjs/index.js",
"module": "dist-esnext/index.js",
"types": "dist-esnext/index.d.ts",
"repository": "https://github.com/FountainheadTechnologies/react-json-delta-inspector",
"author": "Fountainhead Technologies Ltd.",
"license": "MIT",
"devDependencies": {
"@commitlint/config-conventional": "7.1.2",
"@optics/codestyle": "1.0.0",
"@types/enzyme": "^3.1.15",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "^23.3.9",
"@types/ramda": "0.25.42",
"@types/react": "^16.7.7",
"@types/react-dom": "^16.0.10",
"@warrenseymour/json-delta": "^1.0.2",
"commitlint": "7.2.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"husky": "1.2.0",
"jest": "^23.6.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"semantic-release": "15.12.1",
"ts-jest": "^23.10.5",
"tslint": "5.11.0",
"tslint-consistent-codestyle": "1.14.1",
"typescript": "^3.1.6"
},
"dependencies": {
"ramda": "0.25.x",
"react-inspector": "2.3.0"
},
"scripts": {
"clean": "rm -rf dist-cjs dist-esnext",
"lint": "tslint --project tsconfig.json",
"build": "yarn clean && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist-esnext/"
],
"watchPathIgnorePatterns": [
"/flycheck_/"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"publishConfig": {
"access": "public"
}
}