-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.47 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
{
"name": "presto.js",
"version": "1.0.0",
"description": "JavaScript library for simultaneous file upload",
"author": "Yu Watanabe <watanabe.yu.1203@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/PrestoTools/presto.js"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.2.2",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015-rollup": "^3.0.0",
"eslint": "^5.12.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"rollup": "^1.0.2",
"rollup-plugin-babel": "^4.2.0",
"uglify-es": "^3.3.9"
},
"optionalDependencies": {
"formidable": "^1.2.1"
},
"scripts": {
"start": "npm run watch",
"build": "mkdir -p dist & rollup -c rollup.config.js",
"minify": "uglifyjs dist/presto.js -o dist/presto.min.js",
"watch": "mkdir -p dist & rollup -c rollup.config.js --watch",
"test": "jest",
"precommit": "lint-staged"
},
"jest": {
"testURL": "http://localhost/",
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"lint-staged": {
"{src,example,test}/**/*.js": [
"eslint --fix",
"git add"
]
},
"keywords": [
"presto.js",
"upload",
"file",
"form",
"fast"
],
"bugs": {
"url": "https://github.com/PretoTools/presto.js/issues"
},
"license": "MIT"
}