-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
98 lines (98 loc) · 3 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
{
"name": "filestack-adaptive",
"author": "Filestack (https://filestack.com)",
"version": "1.4.0",
"description": "HTML5 picture elements powered by Filestack",
"main": "build/main/index.js",
"module": "build/module/index.js",
"browser": "build/browser/index.umd.js",
"typings": "build/main/index.d.ts",
"repository": "https://github.com/filestack/adaptive",
"scripts": {
"build": "npx gulp build:typescript && npm run webpack",
"build:main": "npx gulp typescript:main",
"build:module": "npx gulp typescript:module",
"webpack": "npx gulp build:webpack",
"dev:watch": "rollup -c config/watch.config.js",
"docs": "rm -rf build/docs && typedoc src",
"docs:publish": "npm run docs && gh-pages -d build/docs",
"lint": "tslint --project .",
"publish": "npm run build && node scripts/publish.js && npm run docs:publish",
"pretest": "rm -rf build && npm run build",
"release": "npx standard-version",
"test": "npm run lint && nyc mocha"
},
"license": "MIT",
"keywords": [
"filestack",
"responsive images",
"adaptive images",
"picture",
"pictures",
"react",
"ssr",
"mobile web",
"html5",
"html picture"
],
"dependencies": {
"filestack-js": "^3.15.0",
"hyperx": "^2.5.4",
"lit-element": "^2.3.1",
"nanohtml": "^1.9.1",
"tslib": "^1.13.0"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.10.2",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@purtuga/esm-webpack-plugin": "^1.2.1",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.9",
"aws-sdk": "^2.689.0",
"babel-loader": "^8.1.0",
"babel-plugin-minify-dead-code-elimination": "^0.5.1",
"clean-webpack-plugin": "^3.0.0",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"del": "^5.1.0",
"dotenv": "^8.2.0",
"envify": "^4.1.0",
"fs-jetpack": "^2.4.0",
"gh-pages": "^2.2.0",
"gulp": "^4.0.2",
"gulp-gzip": "^1.4.2",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^5.0.1",
"html-validator": "^5.1.14",
"lodash.merge": "^4.6.2",
"mime-types": "^2.1.27",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"standard-version": "^8.0.0",
"tslint": "^6.1.2",
"tslint-config-semistandard": "^8.0.1",
"typedoc": "^0.17.7",
"typescript": "^3.9.3",
"validate-commit-msg": "^2.14.0",
"webpack": "^4.41.5",
"webpack-assets-manifest": "^3.1.1",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-cli": "^3.3.10",
"webpack-node-externals": "^1.7.2",
"webpack-stream": "^5.2.1",
"webpack-subresource-integrity": "^1.4.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types",
"helpMessage": "Use \"git cz\" or conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
}
}
}