-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.36 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.36 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"author": {
"email": "developer@andculture.com",
"name": "andculture",
"url": "https://www.andculture.com"
},
"bugs": {
"url": "https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core/issues"
},
"dependencies": {
"query-string": "6.13.1"
},
"description": "Common patterns, functions, etc... used when building react applications",
"devDependencies": {
"@types/faker": "5.5.6",
"@types/humanize-plus": "1.8.0",
"@types/jest": "25.1.5",
"@types/lodash": "4.14.108",
"@types/node": "13.11.0",
"@types/rosie": "0.0.39",
"andculturecode-javascript-testing": "0.2.1",
"axios": "0.21.1",
"cross-env": "6.0.3",
"cypress": "3.8.3",
"faker": "5.5.3",
"humanize-plus": "1.8.2",
"i18next": "19.4.5",
"i18next-browser-languagedetector": "6.0.1",
"immutable": "4.0.0-rc.12",
"jest": "25.5.4",
"jest-extended": "0.11.5",
"lodash": "4.17.21",
"prettier": "1.19.1",
"rimraf": "2.6.2",
"rosie": "2.1.0",
"ts-jest": "25.5.1",
"ts-loader": "8.0.4",
"tslint": "6.1.2",
"tslint-config-prettier": "1.18.0",
"typedoc": "0.17.6",
"typedoc-plugin-markdown": "2.2.17",
"typescript": "3.8.3",
"webpack": "4.44.2",
"webpack-cli": "3.3.12"
},
"files": [
"dist",
"dist-global"
],
"homepage": "https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core#readme",
"jest": {
"preset": "ts-jest"
},
"keywords": [
"JavaScript",
"Node",
"React"
],
"license": "ISC",
"main": "dist/index",
"name": "andculturecode-javascript-core",
"peerDependencies": {
"axios": "0.19 || 0.21",
"humanize-plus": ">=1.8.2",
"i18next": ">=19.4.5",
"i18next-browser-languagedetector": ">=6.0.1",
"immutable": ">=4.0.0-rc.12",
"lodash": ">=4.17.19"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndcultureCode/AndcultureCode.JavaScript.Core.git"
},
"scripts": {
"build": "tsc --pretty --project tsconfig.dist.json && webpack && npm run validate-peer-dependencies",
"clean": "rimraf dist && rimraf coverage",
"configure:git": "echo Ensuring git hooksPath is set to .githooks directory && git config core.hooksPath .githooks && chmod +x .githooks/*",
"coverage": "jest ./src --coverage",
"docs": "typedoc --tsconfig tsconfig.dist.json --mode file --excludeExternals --plugin typedoc-plugin-markdown --readme none",
"format": "prettier --write \"src/**/*.ts\" --trailing-comma es5",
"postbuild": "npm run docs",
"postpublish": "cross-env-shell \"git add -A && git commit -m \"$npm_package_version\" && git push origin main\"",
"prebuild": "npm run clean && npm run format && echo Using TypeScript && tsc --version",
"prepublishOnly": "npm run build",
"test": "jest ./src",
"test-cypress": "cypress run",
"validate-peer-dependencies": "node validate-peer-dependencies.js",
"watch": "tsc --pretty --watch",
"watch:coverage": "jest ./src --coverage --watch",
"watch:test": "jest ./src --watch"
},
"types": "dist/index",
"version": "0.9.0"
}