-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.65 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
{
"name": "@validide/javascript-browser-utilities",
"version": "0.0.1",
"description": "JavaScript Browser Utilities",
"main": "dist/js/index.js",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@types/chai": "4.3.9",
"@types/jsdom": "21.1.4",
"@types/mocha": "10.0.3",
"@typescript-eslint/eslint-plugin": "6.8.0",
"@typescript-eslint/parser": "6.8.0",
"chai": "4.3.10",
"eslint": "8.51.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jsdoc": "46.8.2",
"eslint-plugin-prefer-arrow": "1.2.3",
"glob": "10.3.10",
"jsdom": "22.1.0",
"mocha": "10.2.0",
"nyc": "15.1.0",
"rimraf": "5.0.5",
"rollup": "4.22.4",
"source-map-support": "0.5.21",
"ts-node": "10.9.1",
"typescript": "5.2.2",
"uglify-js": "3.17.4"
},
"scripts": {
"clean": "node ./.build/clean.js",
"prebuild": "npm run clean",
"build": "tsc --module es2015 && rollup --config ./rollup.config.js && node ./.build/minify.js",
"test": "npm run lint && nyc mocha",
"predocs": "npm run test && npm run build",
"docs": "rollup --config ./rollup.config.js --dir ./docs/lib/bundle/",
"lint": "eslint -c .eslintrc.js --ext .ts ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/validide/javascript-browser-utilities.git"
},
"keywords": [
"javascript",
"browser",
"utilities"
],
"author": "Valentin Dide",
"license": "MIT",
"bugs": {
"url": "https://github.com/validide/javascript-browser-utilities/issues"
},
"homepage": "https://github.com/validide/javascript-browser-utilities#readme",
"files": [
"dist",
"src"
]
}