-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"name": "stik.js",
"version": "1.0.0",
"description": "A JS framework to wire your JavaScript execution to your server-side rendered HTML templates",
"main": "dist/stik.js",
"scripts": {
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "[email protected]:stikjs/stik.js.git"
},
"keywords": [
"scope management",
"Dependency Injection",
"Single Responsibility Principle"
],
"author": "Lukas Alexandre",
"license": "MIT",
"homepage": "http://stikjs.com",
"devDependencies": {
"gulp-concat": "^2.2.0",
"gulp-header": "^1.0.2",
"gulp-uglify": "^0.3.1",
"gulp-jasmine": "^0.2.0",
"gulp-zip": "^0.4.0"
},
"banner": {
"divider": "// ==========================================================================",
"project": "// Project: Stik.js - JavaScript Separation Of Concerns",
"copyright": "// Copyright: Copyright 2013-2014 Lukas Alexandre",
"license": "// License: Licensed under MIT license",
"licenseLink": "// See https://github.com/stikjs/stik.js/blob/master/LICENSE"
},
"dependencies": {
"stik-core": "^1.0.3",
"stik-courier": "^0.4.0",
"stik-dom": "0.x",
"stik-helpers": "^0.4.0",
"stik-labs": "^0.2.0",
"stik-url": "^0.2.2",
"stik-view-bag": "^0.3.0"
}
}