forked from jvilk/BrowserFS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.72 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
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "browserfs",
"version": "1.0.0",
"description": "A filesystem in your browser!",
"main": "dist/browserfs.js",
"typings": "dist/browserfs",
"keywords": [
"filesystem",
"node",
"storage"
],
"homepage": "https://github.com/jvilk/BrowserFS",
"author": "John Vilk <[email protected]> (http://people.cs.umass.edu/~jvilk)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jvilk/BrowserFS.git"
},
"bugs": {
"url": "https://github.com/jvilk/BrowserFS/issues"
},
"engines": {
"node": ">= 0.10"
},
"bin": {
"make_xhrfs_index": "./dist/scripts/make_xhrfs_index.js"
},
"devDependencies": {
"@types/archiver": "^0.15.33",
"@types/async": "^2.0.32",
"@types/dropboxjs": "0.0.29",
"@types/filesystem": "0.0.28",
"@types/mocha": "^2.2.32",
"@types/node": "6.0.33",
"@types/rimraf": "0.0.28",
"archiver": "^1.0.1",
"async-es": "^2.0.1",
"bfs-path": "^0.1.2",
"bfs-process": "^0.1.6",
"buffer": "^5.0.0",
"detect-browsers": "^2.0.0",
"dropbox": "^0.10.3",
"express": "^4.14.0",
"karma": "1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.2.0",
"karma-opera-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"mocha": "^3.1.1",
"object-wrapper": "^0.2.0",
"remap-istanbul": "^0.6.4",
"rimraf": "^2.5.4",
"rollup": "^0.36.3",
"rollup-plugin-alias": "^1.2.0",
"rollup-plugin-buble": "^0.14.0",
"rollup-plugin-inject": "^2.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.4.1",
"rollup-watch": "^2.5.0",
"source-map-loader": "^0.1.5",
"typescript": "^2.0.3",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2"
},
"scripts": {
"build": "tsc -p src && rollup -c src/rollup.config.js && webpack --config src/webpack.config.js && webpack -p --config src/webpack.config.js",
"build_tests": "tsc -p test && rollup -c test/rollup.config.js && rollup -c test/rollup.worker.config.js && webpack --config test/webpack.config.js",
"build_scripts": "tsc -p scripts",
"dist": "npm run build && npm run build_scripts && node build/scripts/make_dist.js && tsc -p src/tsconfig.node.json",
"test": "npm run build_scripts && node build/scripts/make_fixture_loader.js && node build/scripts/make_test_launcher.js && npm run build_tests && node build/scripts/make_zip_fixtures.js && node build/scripts/make_xhrfs_index.js test/fixtures/xhrfs/listings.json && karma start karma.config.js",
"prepublish": "npm run dist"
},
"dependencies": {
"async": "^2.0.1",
"pako": "^1.0.0"
}
}