-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.25 KB
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
{
"name": "lite-uploader",
"description": "Lightweight nodeJS/jQuery File Uploader",
"version": "6.0.0",
"scripts": {
"php-server": "php -S localhost:8000",
"lint": "eslint src/ test/",
"test": "mocha",
"coverage": "nyc --reporter=html npm run test",
"prepush": "npm run lint && npm test"
},
"husky": {
"hooks": {
"pre-push": "npm run prepush"
}
},
"prettier": {
"semi": false,
"trailingComma": "all",
"bracketSpacing": false,
"printWidth": 100
},
"keywords": [
"lightweight",
"html5",
"jQuery",
"file",
"uploader",
"upload",
"AJAX",
"lite",
"jquery-plugin",
"ecosystem:jquery",
"node",
"nodeJS"
],
"homepage": "https://github.com/burt202/lite-uploader",
"license": "MIT",
"main": "src/liteuploader.js",
"author": "Aaron Burtnyk <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/burt202/lite-uploader.git"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"mocha": "^6.2.3",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"sinon": "^9.2.3",
"sinon-chai": "^3.5.0"
}
}