-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.57 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.57 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
{
"name": "hakim",
"version": "2.0.1",
"description": "a validation lib",
"type": "module",
"main": "built/hakim.js",
"browser": "built/hakim.js",
"scripts": {
"clear": "rimraf built coverage .nyc_output",
"build": "npm run clear && cross-env NODE_ENV=production rollup -c",
"mocha": "mocha --colors --reporter dot ./test/unit/test.js",
"test:node": "cross-env MODE=node nyc npm run mocha",
"karma": "karma start",
"test:browser": "cross-env MODE=browser npm run karma",
"deploy": "npm run build && npm run push && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zzzgit/hakim.git"
},
"files": [
"built"
],
"keywords": [
"validaton",
"node",
"hakim",
"javascript"
],
"author": "revenger",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/zzzgit/hakim/issues"
},
"homepage": "https://github.com/zzzgit/hakim#readme",
"devDependencies": {
"@stylistic/eslint-plugin": "^5.2.3",
"chai": "^5.2.1",
"cross-env": "^10.0.0",
"eslint": "^9.32.0",
"eslint-config-janus": "^9.0.17",
"eslint-plugin-array-func": "^5.0.2",
"eslint-plugin-mocha": "^11.1.0",
"eslint-plugin-no-floating-promise": "^2.0.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-unicorn": "^60.0.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^11.7.1",
"nyc": "^17.1.0",
"rimraf": "^6.0.1",
"rollup": "^4.46.2"
}
}