forked from stevenschobert/instafeed.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.52 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
{
"name": "instafeed.js",
"description": "A simple Instagram javascript plugin for your website.",
"version": "2.0.0",
"license": "MIT",
"homepage": "https://instafeedjs.com",
"files": [
"dist/*"
],
"keywords": [
"instagram"
],
"author": "Steven Schobert <[email protected]> (https://stevenschobert.com)",
"contributors": [
"Ben Hull <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/stevenschobert/instafeed.js.git"
},
"main": "./dist/instafeed.js",
"module": "./dist/instafeed.es.js",
"exports": {
"import": "./dist/instafeed.es.js",
"require": "./dist/instafeed.js"
},
"scripts": {
"lint-src": "jshint --reporter ./node_modules/jshint-stylish src/**.js",
"lint-test": "jshint --reporter ./node_modules/jshint-stylish test/**.js",
"unit-test": "mocha -R spec test/",
"build-browser-test": "cp node_modules/mocha/mocha.{css,js} browser-test/ && browserify test/test.js > browser-test/test-bundle.js",
"build-dist": "node scripts/build-min.js src/instafeed.js dist/ && node scripts/print-file-size.js src/instafeed.js dist/instafeed.es.js dist/instafeed.es.min.js dist/instafeed.es.min.map dist/instafeed.js dist/instafeed.min.js dist/instafeed.min.map",
"test": "npm run lint-src && npm run lint-test && npm run unit-test"
},
"devDependencies": {
"browserify": "^17.0.0",
"jshint": "^2.13.0",
"jshint-stylish": "^2.2.1",
"mocha": "^8.4.0",
"rollup": "^2.50.5",
"uglify-es": "^3.3.9"
}
}