-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.97 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
67
68
69
70
71
{
"name": "intro-guide-js",
"version": "0.0.1",
"description": "A JS library for creating a beautiful step-by-step introduction to your web application's features",
"main": "dist/js/bundle.js",
"directories": {
"test": "test"
},
"files": [
"dist/js/bundle.js",
"dist/css/bundle.css",
"dist/fonts/*",
"README.md"
],
"config": {
"stylus": "./node_modules/.bin/stylus"
},
"scripts": {
"test": "echo 'No test'",
"build:js": "webpack --colors --progress",
"build:css": "stylus ./styles/*.styl -o ./styles/ && cp styles/app.css dist/css/bundle.css",
"build": "npm run build:css && npm run build:js && echo 'Done!'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johanlahti/intro-guide-js.git"
},
"author": "Johan Lahti <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/johanlahti/intro-guide-js/issues"
},
"homepage": "https://github.com/johanlahti/intro-guide-js#readme",
"devDependencies": {
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "latest",
"babelify": "latest",
"browserify": "latest",
"del": "latest",
"event-stream": "latest",
"extract-text-webpack-plugin": "^1.0.1",
"fs": "latest",
"gulp": "latest",
"gulp-autoprefixer": "latest",
"gulp-babel": "latest",
"gulp-clean-css": "^2.0.8",
"gulp-concat": "^2.6.0",
"gulp-filter": "^4.0.0",
"gulp-flatten": "latest",
"gulp-inject": "latest",
"gulp-plumber": "latest",
"gulp-rename": "latest",
"gulp-replace": "^0.5.4",
"gulp-shell": "^0.5.2",
"gulp-stylus": "latest",
"gulp-uglify": "latest",
"gulp-using": "latest",
"gulp-util": "latest",
"jshint": "latest",
"jshint-stylish": "latest",
"run-sequence": "^1.2.1",
"stylus": "^0.54.5",
"vinyl-source-stream": "latest",
"webpack": "^1.13.1"
},
"dependencies": {
"font-awesome": "^4.6.3",
"popper.js": "^0.4.2"
}
}