-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.93 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.93 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "simplatic-http-server",
"version": "1.1.1",
"description": "A very light-weight and very simple static HTTP server based on node's built-in http module",
"main": "dist/main.umd.js",
"types": "dist/types/main.d.ts",
"scripts": {
"test:e2e": "mocha",
"pretest:e2e:coverage": "rimraf coverage",
"test:e2e:coverage": "nyc npm run test:e2e",
"test:e2e:prod": "npm run test:e2e:coverage -- --cache false",
"prebuild": "rimraf dist",
"build": "rollup --config",
"build:ugligy": "npm run build -- --environment UGLIFY",
"build:watch": "npm run build -- --watch",
"build:prod": "npm run build -- --environment BUILD:production",
"build:prod0": "npm run build -- --environment BUILD:production,UGLIFY:false",
"prepublishOnly": "npm run build:prod -- --environment UGLIFY:false && npm run test:e2e:prod"
},
"mocha": {
"diff": true,
"extension": "js",
"spec": "./mocha/**/*.spec.js",
"reporter": "spec",
"timeout": 5000
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*{.,-}{test,spec}.{t,j}s"
],
"reporter": [
"text",
"lcov"
],
"check-coverage": true,
"branches": 90,
"functions": 95,
"lines": 90,
"statements": 90,
"temp-dir": "./coverage/.nyc_output"
},
"repository": {
"type": "git",
"url": "https://github.com/mirismaili/simplatic-http-server.git"
},
"keywords": [
"simple-static-http-server",
"simple-http-server",
"very-simple-http-server",
"light-http-server",
"light-weight-http-server",
"too-light-http-server",
"static-http-server",
"http-server",
"server",
"http",
"promise",
"library"
],
"author": "S. M. Mir-Ismaili <s.m.mirismaili@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mirismaili/simplatic-http-server/issues"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"//": "devDependencies: `@types/...` is needed to be in dependencies due to some notes in IntelliJ IDEs. See: https://intellij-support.jetbrains.com/hc/en-us/community/posts/206324989/comments/360000603579",
"devDependencies": {
"@types/debug": "^4.1.4",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.10",
"@types/puppeteer": "~1.12.4",
"builtin-modules": "^3.1.0",
"chai": "^4.2.0",
"lodash.camelcase": "^4.3.0",
"lodash.snakecase": "^4.1.1",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"puppeteer": "~1.17.0",
"rimraf": "^2.6.3",
"rollup": "^1.12.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-typescript2": "^0.22.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.5.2"
},
"dependencies": {
"debug": "^4.1.1"
}
}