1 | { |
||
2 | "name": "siteapp", |
||
3 | "version": "0.0.1", |
||
4 | "description": "just another application framework", |
||
5 | "main": "dist/js/siteapp.js", |
||
6 | "author": "Björn Bartels <[email protected]>", |
||
7 | "homepage": "https://bjoernbartels.earth", |
||
8 | "license": "Apache-2.0", |
||
9 | "repository": { |
||
10 | "type": "git", |
||
11 | "url": "[email protected]:js/siteapp.git" |
||
12 | }, |
||
13 | "bugs": { |
||
14 | "url": "https://gitlab.bjoernbartels.earth/js/siteapp/issues", |
||
15 | "email": "[email protected]" |
||
16 | }, |
||
17 | "engines": { |
||
18 | "node": ">=6.0", |
||
19 | "npm": ">=3.0" |
||
20 | }, |
||
21 | "jspm": { |
||
22 | "main": "dist/js/siteapp.js", |
||
23 | "format": "global", |
||
24 | "shim": { |
||
25 | "dist/js/siteapp": { |
||
26 | "deps": [ |
||
27 | "jquery" |
||
28 | ] |
||
29 | } |
||
30 | } |
||
31 | }, |
||
32 | "browserify": { |
||
33 | "transform": [ |
||
34 | [ |
||
35 | "babelify", |
||
36 | { |
||
37 | "presets": [ |
||
38 | "env" |
||
39 | ] |
||
40 | } |
||
41 | ] |
||
42 | ] |
||
43 | }, |
||
44 | "babel": { |
||
45 | "presets": [ |
||
46 | "env" |
||
47 | ] |
||
48 | }, |
||
49 | "scripts": { |
||
50 | "start": "gulp", |
||
51 | "test": "npm run test:sass && npm run test:javascript:phantomjs", |
||
52 | "test:ci": "npm run test:sass && npm run test:javascript:ci", |
||
53 | "test:sass": "mocha test/sass/test_sass.js", |
||
54 | "test:javascript:transpile": "gulp sass:siteapp && gulp test:transpile-js", |
||
55 | "test:javascript:phantomjs": "npm run test:javascript:transpile && mocha-phantomjs test/javascript/index-src.html && mocha-phantomjs test/javascript/index-min.html", |
||
56 | "test:javascript:browserstack": "npm run test:javascript:transpile && browserstack-runner", |
||
57 | "test:javascript:ci": "npm run test:javascript:phantomjs", |
||
58 | "test:visual": "gulp test", |
||
59 | "deploy": "gulp deploy", |
||
60 | "deploy:prep": "gulp deploy:prep", |
||
61 | "deploy:docs": "gulp deploy:docs", |
||
62 | "deploy:beta": "gulp deploy:beta" |
||
63 | }, |
||
64 | "dependencies": { |
||
65 | "dateformat": "^3.0.0", |
||
66 | "gaze": "^1.1.2", |
||
67 | "jquery": ">=3.0.0", |
||
68 | "process-nextick-args": "^1.0.7", |
||
69 | "require": "^2.4.20", |
||
70 | "requirejs": "^2.3.5", |
||
71 | "uglify-js": "^3.2.0", |
||
0 ignored issues
–
show
introduced
by
![]() This dependency has a security advisory: Incorrect Handling of Non-Boolean Comparisons During Minification
Recommendation: Upgrade UglifyJS to version >= 2.4.24. ![]() |
|||
72 | "util-deprecate": "^1.0.2", |
||
73 | "what-input": "^4.1.3" |
||
74 | }, |
||
75 | "devDependencies": { |
||
76 | "array-uniq": "^1.0.2", |
||
77 | "autoprefixer": "^6.7.7", |
||
78 | "babel-loader": "^7.1.2", |
||
79 | "babel-core": "^6.26.0", |
||
80 | "babel-preset-env": "^1.6.0", |
||
81 | "browser-sync": "^2.18.12", |
||
82 | "chai-jquery": "^2.0.0", |
||
83 | "chalk": "^1.1.1", |
||
84 | "clipboard": "^1.7.1", |
||
85 | "corejs-typeahead": "^1.1.1", |
||
86 | "doiuse": "^2.6.0", |
||
87 | "foundation-docs": "git+https://github.com/zurb/foundation-docs.git", |
||
88 | "gulp": "^3.8.10", |
||
89 | "gulp-add-src": "^0.2.0", |
||
90 | "gulp-babel": "^6.1.1", |
||
91 | "gulp-cache-bust": "~1.0.2", |
||
92 | "gulp-check-deps": "^1.4.1", |
||
93 | "gulp-clean-css": "^3.4.1", |
||
94 | "gulp-concat": "^2.4.3", |
||
95 | "gulp-eslint": "^3.0.1", |
||
96 | "gulp-filter": "^4.0.0", |
||
97 | "gulp-if": "^2.0.0", |
||
98 | "gulp-load-plugins": "^1.5.0", |
||
99 | "gulp-newer": "^1.1.0", |
||
100 | "gulp-plumber": "^1.0.1", |
||
101 | "gulp-postcss": "^7.0.0", |
||
102 | "gulp-prompt": "^0.2.0", |
||
103 | "gulp-rename": "^1.2.2", |
||
104 | "gulp-replace": "^0.5.4", |
||
105 | "gulp-rsync": "^0.0.7", |
||
106 | "gulp-ruby-sass": "^2.0.6", |
||
107 | "gulp-sass": "^2.1.0", |
||
108 | "gulp-sass-lint": "^1.3.2", |
||
109 | "gulp-sourcemaps": "^2.6.0", |
||
110 | "gulp-strip-debug": "^1.1.0", |
||
111 | "gulp-uglify": "^2.1.2", |
||
112 | "gulp-zip": "^3.2.0", |
||
113 | "inquirer": "^2.0.0", |
||
114 | "is-empty-object": "^1.1.1", |
||
115 | "js-yaml": "^3.8.4", |
||
116 | "mocha": "^3.4.2", |
||
117 | "mocha-phantomjs": "^4.0.2", |
||
118 | "motion-ui": "^1.1.0", |
||
119 | "multiline": "^1.0.2", |
||
120 | "normalize-scss": "6.0.0", |
||
121 | "octophant": "^1.0.0", |
||
122 | "opener": "^1.4.3", |
||
123 | "panini": "^1.4.0", |
||
124 | "parker": "^1.0.0-alpha.0", |
||
125 | "prettyjson": "^1.1.3", |
||
126 | "require-dir": "^0.3.2", |
||
127 | "rimraf": "^2.6.1", |
||
128 | "run-sequence": "^1.1.4", |
||
129 | "sass-true": "^2.2.2", |
||
130 | "sassy-lists": "3.0.0", |
||
131 | "sinon": "^1.17.7", |
||
132 | "strip-debug": "^2.0.0", |
||
133 | "supercollider": "^1.4.0", |
||
134 | "touch": "^1.0.0", |
||
135 | "vinyl": "^2.0.2", |
||
136 | "vinyl-named": "^1.1.0", |
||
137 | "vinyl-source-stream": "^1.1.0", |
||
138 | "webpack": "^2.6.1", |
||
139 | "webpack-stream": "^3.2.0", |
||
140 | "yargs": "^6.6.0" |
||
141 | } |
||
142 | } |
||
143 |