This repository has been archived by the owner on Sep 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.73 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
{
"name": "@michaelcoxon/ensure",
"version": "1.0.2",
"description": "Helpers for method argument checking",
"main": "dist/index.js",
"types": "lib/index.d.ts",
"module": "lib/index.js",
"sideEffects": false,
"scripts": {
"build-typescript": "tsc",
"version": "npm -v && node -v",
"coverage": "nyc --reporter=html --reporter=text jest",
"run-tests": "mocha -r ts-node/register tests/**/*.spec.ts",
"test": "npm-run-all -s build-prod -p run-tests",
"build-prod": "SET NODE_ENV=production&& webpack",
"prepack": "npm-run-all -s test build-doc",
"build-doc": "typedoc --out docs src&& copy .\\.nojekyll .\\docs&& copy .\\_config.yml .\\docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaelcoxon/ensure.git"
},
"author": "Michael Coxon",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/michaelcoxon/ensure/issues"
},
"homepage": "https://github.com/michaelcoxon/ensure#readme",
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^2.2.48",
"@types/prop-types": "^15.5.3",
"@types/webpack-env": "^1.13.5",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.1.2",
"dts-bundle": "^0.7.3",
"file-loader": "^0.11.2",
"json-loader": "^0.5.7",
"mocha": "^4.0.1",
"npm-run-all": "^4.1.2",
"ts-node": "^4.0.2",
"typedoc": "^0.11.1",
"typescript": "^4.4.3",
"webpack": "^5.52.1",
"webpack-cli": "^3.3.12",
"webpack-cyclic-dependency-checker": "^0.0.1",
"webpack-log": "^3.0.2",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@michaelcoxon/utilities": "^10.0.0-alpha.2",
"tslib": "^2.3.1"
},
"-vs-binding": {
"ProjectOpened": [
"test"
]
}
}