-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 1.79 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
{
"name": "pointerify",
"version": "1.1.4",
"main": "./dist/index.js",
"license": "Apache-2.0",
"types": "./dist/index.d.ts",
"browser": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/patrickkunka/pointerify/"
},
"scripts": {
"lint": "tslint --project tsconfig.json -c tslint.json './src/**/*.ts'",
"test": "mocha --opts ./config/mocha.opts",
"test:watch": "mocha --opts ./config/mocha.opts --watch",
"clean:dist": "rm -r -f ./dist",
"build": "npm run lint && npm run clean:dist && tsc",
"watch": "tsc --watch",
"bundle:watch": "webpack --config ./config/webpack.config.ts --watch",
"bundle:build": "npm run lint && webpack --config ./config/webpack.config.ts",
"cover": "nyc mocha **/*.test.ts",
"prepublishOnly": "npm run build"
},
"nyc": {
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporter": [
"lcov",
"text"
],
"extension": [
".ts"
],
"include": [
"src"
],
"exclude": [
"**/index.ts",
"**/*.d.ts",
"**/**.test.ts",
"**/Interfaces",
"**/Constants",
"dist",
"coverage"
],
"all": true
},
"devDependencies": {
"@types/chai": "4.2.2",
"@types/chai-as-promised": "7.1.3",
"@types/mocha": "2.2.44",
"@types/node": "14.10.0",
"@types/sinon": "7.0.13",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"jsdom": "15.1.1",
"jsdom-global": "3.0.2",
"json-loader": "0.5.4",
"mocha": "8.1.3",
"nyc": "14.1.1",
"sinon": "7.4.2",
"ts-loader": "8.0.3",
"ts-node": "9.0.0",
"tslint": "6.1.3",
"typescript": "4.0.2",
"webpack": "4.44.1",
"webpack-cli": "3.3.12"
},
"dependencies": {
"helpful-merge": "0.2.0"
}
}