-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.62 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
{
"name": "dexters-lab",
"version": "1.7.0",
"description": "Lodash chain steps visualization tool",
"main": "index.js",
"scripts": {
"test": "mocha",
"lint": "standard",
"postversion": "git push && git push --tags && LIVE_DIR=../dexters-lab-live/ npm run deploy",
"predeploy": "echo \"Deploy repo directory: $LIVE_DIR\"",
"deploy": "NODE_ENV=production gulp build && cp -R docs/* $LIVE_DIR && cd $LIVE_DIR && git add -A && git commit -m \"Release ${npm_package_version}\" && git push origin master"
},
"keywords": [
"lodash"
],
"author": "Tomasz Sikora <[email protected]>",
"license": "MIT",
"standard": {
"parser": "babel-eslint"
},
"dependencies": {
"brace": "^0.9.1",
"copy-to-clipboard": "^3.0.5",
"json-beautify": "^1.0.1",
"lodash": "4.17.2",
"react": "^15.4.1",
"react-bootstrap": "^0.30.7",
"react-dom": "^15.4.1",
"react-fontawesome": "^1.5.0",
"store": "^1.3.20",
"whatwg-fetch": "^2.0.2"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"babelify": "^7.3.0",
"bootstrap-sass": "^3.3.7",
"browserify": "^13.1.1",
"chai": "^3.5.0",
"font-awesome": "^4.7.0",
"gulp": "^3.9.1",
"gulp-sass": "^3.1.0",
"gulp-serve": "^1.4.0",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"mocha": "^3.2.0",
"node-sass": "^4.5.0",
"standard": "^8.6.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.9.0"
}
}