-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
67 lines (67 loc) · 2.12 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
{
"name": "txt-reader",
"version": "1.4.5",
"description": "TxtReader is a JavaScript library to read text file in browsers based on FileReader API. It can read very large, huge, giant files (GB+).",
"main": "txt-reader.js",
"scripts": {
"test:debug": "tsc tests/test.ts && node --inspect-brk .\\node_modules\\nightwatch\\bin\\nightwatch -t tests/test.js",
"test": "tsc tests/test.ts && nightwatch -t tests/test.js",
"build": "webpack --config webpack.node.js --mode development",
"_build-watch": "webpack --config webpack.node.js --mode development -w",
"build-prod": "webpack --config webpack.prod.js",
"build-node": "webpack --config webpack.node.js",
"build-test": "webpack --config webpack.test.js",
"start": "webpack-dev-server --config webpack.test.js"
},
"keywords": [
"text",
"reader",
"file",
"browser"
],
"author": "Sheng Jiang",
"license": "MIT",
"dependencies": {
"@types/lodash.clonedeep": "^4.5.6",
"lodash.clonedeep": "^4.5.0",
"promise-polyfill": "^8.1.3",
"text-encoding-shim": "^1.0.4"
},
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/json5": "0.0.30",
"@types/line-reader": "0.0.28",
"@types/nightwatch": "^1.1.1",
"chai": "^4.2.0",
"chromedriver": "^76.0.1",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^4.1.2",
"css-loader": "^3.2.0",
"express": "^4.17.1",
"html-webpack-plugin": "^3.2.0",
"jquery": "^3.4.1",
"json5": "^2.1.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"line-reader": "^0.4.0",
"nightwatch": "^1.2.4",
"style-loader": "^1.0.0",
"ts-loader": "^6.1.1",
"typescript": "^3.6.3",
"vue": "^2.6.10",
"vue-class-component": "^7.1.0",
"vue-loader": "^15.7.1",
"vue-property-decorator": "^8.2.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1",
"webpack-merge": "^4.2.2",
"worker-inlinify-webpack-plugin": "^1.0.4"
},
"typings": "txt-reader.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/js1016/txt-reader.git"
}
}