forked from filestack/filestack-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
136 lines (136 loc) · 3.91 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "filestack-js",
"version": "1.0.0-rc1",
"description": "Official JavaScript library for Filestack",
"main": "build/main/index.js",
"module": "build/module/index.js",
"browser": "build/browser/index.esm.js",
"typings": "build/main/index.d.ts",
"unpkg": "build/browser/filestack.min.js",
"repository": "https://github.com/filestack/filestack-js",
"author": "Filestack <filestack.com>",
"license": "Apache-2.0",
"files": [
"src",
"build"
],
"scripts": {
"build": "gulp build",
"build:main": "gulp typescript:main",
"build:module": "gulp typescript:module",
"build:browser": "gulp rollup",
"lint": "tslint --project . src/**/*.ts",
"prism:mock": "node test/prism.js",
"prism:record": "node test/prism.js --record",
"toxy": "node test/toxy.js",
"test": "npm run build && concurrently -r --kill-others 'npm run prism:mock' 'npm run toxy' 'npm run lint && TEST_ENV=unit karma start && TEST_ENV=unit nyc mocha'",
"test:integration": "npm run build && npm run lint && TEST_ENV=integration karma start && TEST_ENV=integration nyc mocha",
"docs": "trash build/docs && typedoc src && opn build/docs/index.html",
"docs:publish": "npm run docs && gh-pages -d build/docs",
"release": "npm run reset && npm run docs:publish && standard-version",
"reset": "git clean -dfx && git reset --hard",
"prepare": "gulp build:prod",
"publish": "node scripts/publish.js",
"examples": "npm run build && node ./examples/examples.js"
},
"engines": {
"node": ">=5.10"
},
"dependencies": {
"abab": "^1.0.4",
"bowser": "^1.8.1",
"filestack-loader": "^3.0.4",
"mime": "^2.2.0",
"spark-md5": "^3.0.0",
"superagent": "^3.8.0",
"tcomb-validation": "^3.4.1",
"tslib": "^1.9.0"
},
"devDependencies": {
"@types/mime": "^2.0.0",
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.47",
"@types/sinon": "^2.3.7",
"@types/spark-md5": "^3.0.0",
"@types/superagent": "^3.5.6",
"aws-sdk": "^2.190.0",
"browserify": "^14.5.0",
"concurrently": "^3.5.0",
"connect": "^3.6.5",
"connect-prism": "^1.0.17",
"cors": "^2.8.4",
"del": "^3.0.0",
"dotenv": "^4.0.0",
"electron": "^1.8.3",
"envify": "^4.1.0",
"express": "^4.16.2",
"fs-jetpack": "^1.2.0",
"gh-pages": "^1.0.0",
"gulp": "^3.9.1",
"gulp-better-rollup": "^3.0.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.6.1",
"gulp-rollup": "^2.16.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-typescript": "^4.0.1",
"gulp-uglify": "^3.0.0",
"js-yaml": "^3.10.0",
"jsdom": "11.6.2",
"jsdom-global": "3.0.2",
"karma": "^1.7.1",
"karma-browserify": "^5.1.1",
"karma-browserstack-launcher": "^1.3.0",
"karma-electron": "^5.2.1",
"karma-mocha": "^1.3.0",
"karma-rollup-preprocessor": "^5.1.1",
"mime-types": "^2.1.17",
"mocha": "^3.5.3",
"nyc": "^11.3.0",
"opn-cli": "^3.1.0",
"rollup": "^0.57.0",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.2.1",
"rollup-watch": "^4.0.0",
"sinon": "^3.3.0",
"standard-version": "^4.0.0",
"toxy": "^0.3.14",
"trash-cli": "^1.4.0",
"tslint": "^5.8.0",
"tslint-config-semistandard": "^7.0.0",
"typedoc": "^0.10.0",
"typescript": "^2.7.1",
"uglify-es": "^3.3.10",
"validate-commit-msg": "^2.14.0",
"watchify": "^3.9.0"
},
"keywords": [
"filestack",
"filepicker",
"upload",
"files",
"multipart",
"S3",
"transform",
"cropper",
"document viewer",
"images",
"image processing",
"file management",
"universal",
"isomorphic"
],
"nyc": {
"exclude": [
"**/*.spec*",
"test/**"
],
"reporter": [
"lcov",
"text-summary"
]
}
}