-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
92 lines (92 loc) · 2.78 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
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "bro-fs",
"version": "0.6.0",
"description": "Promise-based HTML5 Filesystem API compatible with Node.js fs module",
"author": {
"name": "Vitaliy Potapov",
"email": "noginsk@rambler.ru"
},
"repository": {
"type": "git",
"url": "git://github.com/vitalets/bro-fs.git"
},
"bugs": {
"url": "https://github.com/vitalets/bro-fs/issues"
},
"main": "dist/bro-fs.js",
"scripts": {
"dev": "karma start",
"serve": "http-server docs -c-1",
"code": "npm run eslint",
"eslint": "eslint src test karma.*.js",
"test": "karma start --single-run",
"test-dist": "SRC_PATH=. npm t",
"test-sauce": "karma start karma-sauce.conf.js",
"test-runtyper": "RUNTYPER=1 webpack && SRC_PATH=./dist-runtyper/bro-fs npm t",
"build-dev": "webpack",
"build-min": "NODE_ENV=production webpack -p",
"build": "run-s build-dev build-min",
"ci": "npm run code && npm run build && SRC_PATH=. npm run test-sauce",
"docs": "rimraf 'docs/!(demo)' && jsdoc -c ./jsdoc.json",
"demo": "cp dist/bro-fs.js docs/demo/bro-fs.js",
"commit-docs": "git add -A docs && (git diff-index --quiet HEAD -- docs || git commit -m'docs' --no-verify)",
"add-contribs": "git-authors-cli",
"prerelease": "run-s code test build test-dist test-runtyper docs demo commit-docs",
"postrelease": "git push --follow-tags --no-verify",
"release": "npm version $VER && npm publish",
"release-patch": "VER=patch npm run release",
"release-minor": "VER=minor npm run release"
},
"husky": {
"hooks": {
"pre-commit": "npm run code",
"pre-push": "npm run code && npm test"
}
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"babel-loader": "^8.0.6",
"babel-plugin-runtyper": "^0.4.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-shallow-deep-equal": "^1.4.6",
"docdash": "^1.1.1",
"eslint": "^6.4.0",
"eslint-plugin-mocha": "^6.1.1",
"git-authors-cli": "^1.0.18",
"husky": "^3.0.5",
"jsdoc": "^3.6.3",
"karma": "^4.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sauce-launcher": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"marked": "^0.7.0",
"mocha": "^6.2.0",
"npm-run-all": "^4.1.3",
"puppeteer": "^1.20.0",
"rimraf": "^3.0.0",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9"
},
"keywords": [
"fs",
"filesystem",
"html5-fs",
"html5-filesystem",
"html5-filesystem-api",
"browser-fs",
"browser-filesystem",
"web-fs",
"web-filesystem"
],
"license": "MIT",
"contributors": [
"vitalets <vitalets@yandex-team.ru>",
"LI, Qi <goodlq11@gmail.com>"
]
}