-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.45 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
{
"name": "filestack-drag-and-drop-js",
"version": "1.1.1",
"description": "Official Drag and Drop library for Filestack",
"main": "dist/main/src/index.js",
"scripts": {
"serve": "webpack-dev-server",
"build": "npx gulp build",
"build:watch": "webpack --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"release": "standard-version",
"deploy": "npx gulp publish",
"deploy:beta": "npx gulp publish:beta",
"docs": "npx trash public/docs && typedoc --exclude './node_modules/**' --exclude './tests/**' --exclude './src/helpers/**' --exclude './src/assets/**' --exclude './src/index.ts' ./src",
"docs:publish": "npm run docs && gh-pages -d build/docs",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": ""
},
"author": "Filestack <filestack.com>",
"license": "MIT",
"dependencies": {
"filestack-js": "^3.24.0",
"trash-cli": "^4.0.0"
},
"devDependencies": {
"aws-sdk": "^2.806.0",
"del": "^6.0.0",
"git-rev-sync": "^3.0.1",
"gulp": "^4.0.2",
"gulp-replace": "^1.0.0",
"gulp-s3-publish": "^3.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-sri": "^0.3.1",
"gulp-typescript": "^6.0.0-alpha.1",
"standard-version": "^9.3.1",
"ts-loader": "^6.2.2",
"typedoc": "^0.20.19",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.2",
"webpack-stream": "^6.1.1"
}
}