-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.79 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.79 KB
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
{
"name": "instaparser",
"version": "0.1.2",
"description": "Unofficial instaparser",
"engines": {
"node": ">=0.4.5"
},
"scripts": {
"fastbuild": "webpack --config ./webpack.prod.config.js",
"build": "babel-node ./scripts/emptyFolder && webpack --config ./webpack.prod.config.js",
"dev": "webpack-dev-server --content-base src/index --hot --host 0.0.0.0 --config ./webpack.config.js",
"jsonfile": "babel-node ./example/index.js",
"watch": "webpack --progress --colors --watch --config ./webpack.config.js",
"test": "mocha ./src/test/*.spec.js --compilers js:babel-core/register",
"test-watch": "mocha ./src/test/*.spec.js --compilers js:babel-core/register --watch",
"example": "babel-node ./example/index.js TAG=$TAG && node server.example.js TAG=$TAG"
},
"contributors": {
"author": "choseungyoon"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"chai": "^3.5.0",
"ejs": "2.5.2",
"eslint": "^3.6.0",
"eslint-config-airbnb": "^11.2.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"express": "4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"fs-extra": "^0.30.0",
"html-webpack-plugin": "^2.22.0",
"jquery": "3.1.1",
"json-loader": "^0.5.4",
"mocha": "^3.1.0",
"mockery": "^1.7.0",
"sinon": "^1.17.6",
"slick-carousel": "1.6.0",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1"
},
"main": "dist/bundle.js",
"directories": {
"test": "test"
},
"keywords": [
"instagram",
"javascript",
"parser"
],
"dependencies": {
"axios": "^0.14.0",
"es6-promise": "^4.0.3"
}
}