|
1 | 1 | { |
2 | 2 | "name": "codesandbox-browserfs", |
3 | 3 | "version": "2.0.0", |
| 4 | + "private": true, |
4 | 5 | "description": "A filesystem in your browser!", |
5 | 6 | "main": "build/browserfs.min.js", |
6 | 7 | "typings": "dist/browserfs", |
7 | | - "keywords": ["filesystem", "node", "storage"], |
| 8 | + "keywords": [ |
| 9 | + "filesystem", |
| 10 | + "node", |
| 11 | + "storage" |
| 12 | + ], |
8 | 13 | "homepage": "https://github.com/jvilk/BrowserFS", |
9 | | - "author": |
10 | | - "John Vilk <[email protected]> (http://people.cs.umass.edu/~jvilk)", |
| 14 | + "author": "John Vilk <[email protected]> (http://people.cs.umass.edu/~jvilk)", |
11 | 15 | "license": "MIT", |
12 | 16 | "repository": { |
13 | 17 | "type": "git", |
|
28 | 32 | "@types/body-parser": "^1.16.4", |
29 | 33 | "@types/express": "^4.0.36", |
30 | 34 | "@types/filesystem": "0.0.28", |
31 | | - "@types/mocha": "^2.2.41", |
32 | 35 | "@types/isomorphic-fetch": "^0.0.34", |
| 36 | + "@types/mocha": "^2.2.41", |
33 | 37 | "@types/node": "~7.0", |
34 | 38 | "@types/rimraf": "~0.0.28", |
35 | 39 | "archiver": "^2.0.0", |
36 | 40 | "async-es": "^2.5.0", |
37 | 41 | "bfs-path": "~0.1.2", |
38 | 42 | "bfs-process": "~0.1.6", |
39 | | - "buffer": "^5.0.7", |
40 | 43 | "body-parser": "^1.17.2", |
| 44 | + "buffer": "^5.0.7", |
41 | 45 | "detect-browsers": "~2.0.0", |
42 | 46 | "dropbox": "^2.5.7", |
43 | 47 | "express": "^4.15.3", |
|
80 | 84 | "watch:webpack": "webpack -w --config src/webpack.config.js", |
81 | 85 | "build:webpack-release": "webpack -p --config src/webpack.config.js", |
82 | 86 | "watch:webpack-release": "webpack -w -p --config src/webpack.config.js", |
83 | | - "build:all": |
84 | | - "npm-run-all --parallel build:tsc build:scripts --sequential build:rollup --parallel build:webpack build:webpack-release", |
85 | | - "start": |
86 | | - "npm-run-all build --parallel watch:tsc watch:scripts watch:rollup watch:webpack watch:webpack-release", |
| 87 | + "build:all": "npm-run-all --parallel build:tsc build:scripts --sequential build:rollup --parallel build:webpack build:webpack-release", |
| 88 | + "start": "npm-run-all build --parallel watch:tsc watch:scripts watch:rollup watch:webpack watch:webpack-release", |
87 | 89 | "test:build:tsc": "tsc -p test", |
88 | 90 | "test:watch:tsc": "tsc --watch -p test", |
89 | 91 | "test:build:rollup": "rollup -c test/rollup.config.js", |
|
92 | 94 | "test:watch:rollup-worker": "rollup -w -c test/rollup.worker.config.js", |
93 | 95 | "test:build:webpack": "webpack --config test/webpack.config.js", |
94 | 96 | "test:watch:webpack": "webpack -w --config test/webpack.config.js", |
95 | | - "test:build": |
96 | | - "npm-run-all test:build:tsc --parallel test:build:rollup test:build:rollup-worker --sequential test:build:webpack", |
97 | | - "test:watch": |
98 | | - "npm-run-all --parallel test:watch:tsc test:watch:rollup test:watch:rollup-worker test:watch:webpack", |
| 97 | + "test:build": "npm-run-all test:build:tsc --parallel test:build:rollup test:build:rollup-worker --sequential test:build:webpack", |
| 98 | + "test:watch": "npm-run-all --parallel test:watch:tsc test:watch:rollup test:watch:rollup-worker test:watch:webpack", |
99 | 99 | "dist:build:node": "tsc -p src/tsconfig.node.json", |
100 | 100 | "script:make_dist": "node build/scripts/make_dist.js", |
101 | 101 | "build": "npm-run-all build:all lint script:make_dist dist:build:node", |
102 | 102 | "script:make_fixture_loader": "node build/scripts/make_fixture_loader.js", |
103 | 103 | "script:make_test_launcher": "node build/scripts/make_test_launcher.js", |
104 | 104 | "script:make_zip_fixtures": "node build/scripts/make_zip_fixtures", |
105 | | - "script:make_http_index": |
106 | | - "node build/scripts/make_http_index.js test/fixtures/httpdownloadfs/listings.json", |
| 105 | + "script:make_http_index": "node build/scripts/make_http_index.js test/fixtures/httpdownloadfs/listings.json", |
107 | 106 | "test:karma": "karma start karma.config.js", |
108 | | - "test:prepare": |
109 | | - "npm-run-all build:scripts script:make_fixture_loader script:make_test_launcher test:build script:make_zip_fixtures script:make_http_index", |
| 107 | + "test:prepare": "npm-run-all build:scripts script:make_fixture_loader script:make_test_launcher test:build script:make_zip_fixtures script:make_http_index", |
110 | 108 | "test": "npm-run-all test:prepare test:karma", |
111 | | - "watch-test": |
112 | | - "npm-run-all test:prepare --parallel watch:scripts test:watch test:karma", |
113 | | - "docs": |
114 | | - "typedoc --mode modules --out doc --excludePrivate --readme src/DOCS.md --name BrowserFS --module umd src", |
| 109 | + "watch-test": "npm-run-all test:prepare --parallel watch:scripts test:watch test:karma", |
| 110 | + "docs": "typedoc --mode modules --out doc --excludePrivate --readme src/DOCS.md --name BrowserFS --module umd src", |
115 | 111 | "install-dependencies": "yarn install" |
116 | 112 | }, |
117 | 113 | "dependencies": { |
|
0 commit comments