-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.28 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
{
"name": "@filestack/loader",
"version": "1.0.9",
"license": "SEE LICENSE IN LICENSE",
"main": "dist/index.js",
"module": "dist/module/index.js",
"browser": "dist/index.esm.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"author": "PCholuj <[email protected]>",
"homepage": "https://github.com/filestack/filestack-loader-js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/filestack/filestack-loader-js.git"
},
"files": [
"dist"
],
"scripts": {
"build": "npm run build:main && npm run build:module && npx webpack",
"build:main": "npx tsc --p tsconfig.json",
"build:module": "npx tsc --p tsconfig.module.json",
"release": "npx standard-version",
"prepublish": "npm run build"
},
"dependencies": {},
"devDependencies": {
"@purtuga/esm-webpack-plugin": "^1.2.1",
"prettier": "^1.19.1",
"standard-version": "^7.1.0",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"description": "Dependency free js async script loader for browsers maintained by @Filestack",
"bugs": {
"url": "https://github.com/filestack/filestack-loader-js/issues"
},
"directories": {
"lib": "lib"
}
}