-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "wrapsplash",
"version": "v4.1.0",
"description": "A simple npm wrapper module to use the popular Unsplash API.",
"private": false,
"main": "dist/wrapsplash.min.js",
"scripts": {
"build-prod": "webpack --config=./script/webpack.config.js --env.production",
"build-dev": "webpack --config=./script/webpack.config.js",
"test": "jest ./test/wrapsplash.spec.js --coverage"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"repository": "git+https://github.com/SandeepVattapparambil/wrapsplash.git",
"keywords": [
"Unsplash",
"API",
"wrapper",
"Images",
"Photos"
],
"author": "Sandeep Vattapparambil",
"license": "MIT",
"bugs": {
"url": "https://github.com/SandeepVattapparambil/wrapsplash/issues"
},
"homepage": "https://github.com/SandeepVattapparambil/wrapsplash#readme",
"dependencies": {
"axios": "^0.18.1"
},
"directories": {
"examples": "examples"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^5.0.1",
"jest": "^23.5.0",
"webpack": "^4.6.0",
"webpack-cli": "^3.0.8",
"webpack-node-externals": "^1.7.2"
}
}