-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
{
"name": "@vtfk/utilities",
"version": "1.4.1",
"description": "A collection of uncategorized javascript functionality used in multiple projects",
"main": "cjs.js",
"module": "es.js",
"scripts": {
"clear_types": "del-cli \"**/*.d.ts\" \"!node_modules\"",
"tsc": "npm run clear_types && tsc",
"jest": "jest",
"test": "standardx && jest",
"standardx:fix": "standardx --fix",
"prepublish": "npm run tsc && standardx && jest",
"patch": "npm run prepublish && npm version patch && npm publish",
"minor": "npm run prepublish && npm version minor && npm publish",
"major": "npm run prepublish && npm version major && npm publish",
"refresh": "del-cli node_modules && del-cli package-lock.json && npm i"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/vtfk/js-utilities.git"
},
"keywords": [
"Utilities"
],
"author": "Karl-Einar Bergstrøm",
"contributors": [
{
"name": "Rune Moskvil Lyngås",
"email": "rune.moskvil.lyngaas@vtfk.no",
"url": "/~https://github.com/runely"
}
],
"license": "ISC",
"bugs": {
"url": "/~https://github.com/vtfk/js-utilities/issues"
},
"homepage": "/~https://github.com/vtfk/js-utilities#readme",
"standardx": {
"env": [
"jest"
],
"ignore": [
"tests/dev.js"
]
},
"devDependencies": {
"del-cli": "4.0.1",
"jest": "^29.7.0",
"standardx": "7.0.0"
}
}