forked from unsplash/unsplash-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.18 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
{
"name": "unsplash-js",
"version": "6.0.0",
"description": "A Universal JavaScript wrapper for the Unsplash API",
"main": "lib/unsplash.js",
"scripts": {
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min && npm run build:examples",
"build:examples": "cp dist/unsplash.min.js examples/umd/public/unsplash.min.js",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack src/unsplash.js dist/unsplash.js --config webpack.config.development.js",
"build:umd:min": "webpack src/unsplash.js dist/unsplash.min.js --config webpack.config.production.js",
"build:watch": "babel src --watch --out-dir lib",
"lint": "eslint src",
"flow": "flow status",
"test": "npm run lint && npm run flow && npm run test:node",
"test:node": "mocha --compilers js:babel-core/register --require test/setup --recursive",
"test:watch": "npm test -- --watch",
"prepublish": "npm run build",
"publish:major": "npm run build && npm version major",
"publish:minor": "npm run build && npm version minor",
"publish:patch": "npm run build && npm version patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unsplash/unsplash-js.git"
},
"keywords": [
"unsplash",
"photos",
"api",
"images",
"splash",
"free"
],
"author": "Unsplash",
"license": "MIT",
"bugs": {
"url": "https://github.com/unsplash/unsplash-js/issues"
},
"homepage": "https://github.com/unsplash/unsplash-js#readme",
"devDependencies": {
"babel": "6.3.26",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "5.0.0-beta10",
"babel-loader": "6.2.1",
"babel-plugin-transform-class-properties": "6.4.0",
"babel-plugin-transform-flow-strip-types": "6.4.0",
"babel-plugin-transform-object-assign": "6.3.13",
"babel-preset-es2015": "6.3.13",
"eslint": "1.10.2",
"expect": "1.12.2",
"flow-bin": "0.40.0",
"istanbul": "0.4.2",
"mocha": "2.3.3",
"mockery": "1.4.0",
"node-fetch": "1.5.0",
"webpack": "1.12.14"
},
"dependencies": {
"form-urlencoded": "1.2.0",
"lodash.get": "4.4.2",
"querystring": "0.2.0",
"url-parse": "1.4.4"
}
}