generated from freeCodeCamp/template
-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
82 lines (82 loc) · 1.91 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@freecodecamp/curriculum-helpers",
"version": "3.8.0",
"description": "Helper functions to test challenges in freeCodecamp's curriculum",
"homepage": "https://freecodecamp.org",
"author": {
"name": "freeCodeCamp.org",
"email": "[email protected]",
"url": "https://freecodecamp.org"
},
"files": [
"/dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
}
},
"types": "./dist/index.d.ts",
"keywords": [
""
],
"devDependencies": {
"@babel/core": "7.26.7",
"@babel/preset-env": "7.26.7",
"@babel/preset-typescript": "7.26.0",
"@types/jest": "27.5.2",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "8.57.1",
"eslint-config-prettier": "6.15.0",
"eslint-config-xo": "0.27.2",
"eslint-plugin-prettier": "3.4.1",
"husky": "8.0.3",
"jest": "26.6.3",
"jest-ts-webcompat-resolver": "1.0.0",
"lint-staged": "9.5.0",
"prettier": "2.8.8",
"ts-loader": "9.5.2",
"webpack": "5.97.1",
"webpack-cli": "5.1.4"
},
"publishConfig": {
"access": "public"
},
"engines": {
"npm": ">= 4.0.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"build": "NODE_ENV=production webpack",
"clean": "rm -rf dist",
"lint": "eslint lib --max-warnings 0 && prettier lib --check",
"test": "jest",
"prepublishOnly": "npm run clean && npm run build",
"webpack": "webpack"
},
"repository": "[email protected]:freeCodeCamp/curriculum-helpers.git",
"jest": {
"resolver": "jest-ts-webcompat-resolver"
},
"license": "BSD-3-Clause",
"dependencies": {
"browserify": "^17.0.0"
}
}