package.json
3.45 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"_args": [
[
"strtok3@6.0.8",
"C:\\Users\\MS\\Documents\\opensourseSW\\LineMusicChatbot"
]
],
"_from": "strtok3@6.0.8",
"_id": "strtok3@6.0.8",
"_inBundle": false,
"_integrity": "sha512-QLgv+oiXwXgCgp2PdPPa+Jpp4D9imK9e/0BsyfeFMr6QL6wMVqoVn9+OXQ9I7MZbmUzN6lmitTJ09uwS2OmGcw==",
"_location": "/strtok3",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "strtok3@6.0.8",
"name": "strtok3",
"escapedName": "strtok3",
"rawSpec": "6.0.8",
"saveSpec": null,
"fetchSpec": "6.0.8"
},
"_requiredBy": [
"/file-type"
],
"_resolved": "https://registry.npmjs.org/strtok3/-/strtok3-6.0.8.tgz",
"_spec": "6.0.8",
"_where": "C:\\Users\\MS\\Documents\\opensourseSW\\LineMusicChatbot",
"author": {
"name": "Borewit",
"url": "https://github.com/Borewit"
},
"bugs": {
"url": "https://github.com/Borewit/strtok3/issues"
},
"dependencies": {
"@tokenizer/token": "^0.1.1",
"@types/debug": "^4.1.5",
"peek-readable": "^3.1.3"
},
"description": "A promise based streaming tokenizer",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.13.0",
"@typescript-eslint/parser": "^2.34.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"del-cli": "^3.0.1",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prefer-arrow": "^1.2.2",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"remark-cli": "^9.0.0",
"remark-preset-lint-recommended": "^5.0.0",
"source-map-support": "^0.5.16",
"token-types": "^2.1.1",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=8"
},
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Borewit"
},
"homepage": "https://github.com/Borewit/strtok3#readme",
"keywords": [
"tokenizer",
"reader",
"token",
"async",
"promise",
"parser",
"decoder",
"binary",
"endian",
"uint",
"stream",
"streaming"
],
"license": "MIT",
"main": "lib/index.js",
"name": "strtok3",
"nyc": {
"check-coverage": false,
"extension": [
".ts"
],
"sourceMap": true,
"instrument": true,
"reporter": [
"lcov",
"text"
],
"report-dir": "coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Borewit/strtok3.git"
},
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "del-cli lib/**/*.js lib/**/*.js.map lib/**/*.d.ts test/**/*.js test/**/*.js.map",
"compile": "npm run compile-src && npm run compile-test",
"compile-src": "tsc -p lib",
"compile-test": "tsc -p test",
"eslint": "eslint lib test --ext .ts --ignore-pattern *.d.ts",
"lint": "npm run lint-md && npm run eslint",
"lint-md": "remark -u preset-lint-recommended .",
"send-codacy": "nyc report --reporter=text-lcov | codacy-coverage",
"send-coveralls": "nyc report --reporter=text-lcov | coveralls",
"start": "npm run compile && npm run lint && npm run cover-test",
"test": "mocha --require ts-node/register --require source-map-support/register --full-trace test/test.ts",
"test-coverage": "nyc npm run test"
},
"types": "lib/index.d.ts",
"version": "6.0.8"
}