-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.78 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
{
"name": "browserprint-es",
"version": "0.0.5",
"description": "BrowserPrint ES",
"main": "dist/browserprint-es.js",
"module": "dist/browserprint-es.js",
"type": "module",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist && eslint . --ext .ts",
"build": "tsc && rollup -c",
"test:debug-nock": "cross-env DEBUG=nock.* mocha --timeout=8000 --exit",
"test": "mocha",
"test:coverage": "c8 --reporter=lcov --reporter=text-summary npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brianzinn/browserprint-es.git"
},
"author": "Brian Zinn",
"license": "ISC",
"bugs": {
"url": "https://github.com/brianzinn/browserprint-es/issues"
},
"homepage": "https://github.com/brianzinn/browserprint-es#readme",
"dependencies": {},
"devDependencies": {
"@rollup/plugin-json": "^5.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-replace": "^5.0.0",
"@types/jsdom": "^20.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^18.8.4",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"c8": "^7.12.0",
"cross-env": "^7.0.3",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jsdom": "^20.0.1",
"jsdom-global": "^3.0.2",
"mocha": "^10.0.0",
"nock": "^13.2.9",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"rollup": "^3.0.0",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"sinon": "^14.0.1",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
}
}