-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·70 lines (70 loc) · 1.95 KB
/
package.json
File metadata and controls
executable file
·70 lines (70 loc) · 1.95 KB
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
{
"name": "slicknode-runtime",
"version": "0.4.5",
"repository": "https://github.com/slicknode/slicknode-runtime.git",
"author": "Meissner Consulting LLC <support@slicknode.com>",
"license": "MIT",
"type": "module",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --fix --ext .ts",
"build": "tsc",
"build:test": "npm run clean && tsc -p tsconfig.test.json",
"copy-test-files": "npm run copy-files && copyfiles -u 3 src/__tests__/testmodules/**/* dist/__tests__/testmodules",
"copy-files": "copyfiles -u 1 src/**/*.{mjs,json} dist/",
"clean": "rimraf dist/*",
"watch": "tsc --watch",
"test": "npm run lint && npm run testonly",
"testonly": "npm run build:test && npm run copy-test-files && mocha --require esm 'dist/**/__tests__/**/*-test.js'",
"testonly:cover": "nyc --reporter html --reporter text-summary -- npm run testonly",
"testonly:coveralls": "nyc --silent -- npm run testonly && nyc report --reporter text-lcov | coveralls",
"dist": "npm run clean && tsc && npm run copy-files",
"prepare": "npm run clean && npm run dist"
},
"directories": {
"lib": "./dist"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.1",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"chai": "^4.3.4",
"copyfiles": "^2.4.1",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"esm": "^3.2.25",
"mocha": "^9.1.2",
"nyc": "^13.0.1",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"include": [
"src/**/*"
],
"reporter": [
"html"
],
"all": true
},
"engines": {
"node": ">=14.0.0"
}
}