-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 869 Bytes
/
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
{
"name": "line-reader-browser",
"version": "0.0.5",
"description": "reading a file line by line in browser",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"install": "tsc && browserify dist/tests/test.js -o dist/tests/bundle.js",
"tsc:w": "node_modules/.bin/tsc -w",
"watchify": "watchify dist/tests/test.js -o dist/tests/bundle.js",
"watch": "start /B \"\" npm run tsc:w && start /B \"\" npm run watchify"
},
"repository": {
"type": "git",
"url": "pending"
},
"keywords": [
"pending"
],
"author": "Vikas Gautam <v33vikasgautam@gmail.com> (http://mytrikks.blogspot.com)",
"license": "MIT",
"dependencies": {
"thenForEach": "git+https://github.com/Vikasg7/thenForEach.git",
"typescript": "^2.4.2"
},
"devDependencies": {
"browserify": "^14.4.0",
"watchify": "^3.9.0"
}
}