-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.03 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
{
"name": "canjs-browserify-example",
"version": "0.0.0",
"description": "An example of how to use CanJS with Browserify and Gulp",
"main": "ember.js",
"scripts": {
"install": "napa"
},
"repository": {
"type": "git",
"url": "[email protected]:ccummings/canjs-browserify-example.git"
},
"keywords": [
"canjs",
"browserify",
"gulp"
],
"author": "Curtis Cummings",
"license": "MIT",
"bugs": {
"url": "https://github.com/ccummings/canjs-browserify-example/issues"
},
"homepage": "https://github.com/ccummings/canjs-browserify-example",
"napa": {
"canjs": "bitovi/canjs.com"
},
"browser": {
"canjs": "./node_modules/canjs/can.jquery.js",
"canjs/construct/proxy.js": "./node_modules/canjs/can.construct.proxy.js",
"canjs/construct/super.js": "./node_modules/canjs/can.construct.super.js",
"canjs/ejs.js": "./node_modules/canjs/can.ejs.js",
"canjs/fixture.js": "./node_modules/canjs/can.fixture.js",
"canjs/list/promise.js": "./node_modules/canjs/can.list.promise.js",
"canjs/list/sort.js": "./node_modules/canjs/can.list.sort.js",
"canjs/map/define.js": "./node_modules/canjs/can.map.define.js",
"canjs/map/validations.js": "./node_modules/canjs/can.map.validations.js",
"canjs/route/pushstate.js": "./node_modules/canjs/can.route.pushstate.js",
"canjs/stache.js": "./node_modules/canjs/can.stache.js"
},
"browserify": {
"transform": [
"browserify-shim",
"can-compilify"
]
},
"browserify-shim": "./browserify-shim.js",
"devDependencies": {
"browser-sync": "~1.3.6",
"gulp-concat": "^2.4.1",
"gulp-less": "^1.3.6",
"gulp-util": "^3.0.1",
"vinyl-source-stream": "^1.0.0",
"watchify": "^2.0.0",
"browserify": "^6.3.2",
"gulp": "^3.8.10",
"require-dir": "^0.1.0",
"can-compilify": "git+https://github.com/ccummings/can-compilify#c347248130b0ead534b3b5f33da2b7d47a48a8fb",
"napa": "^1.0.2",
"merge-stream": "^0.1.6",
"browserify-shim": "^3.8.0"
},
"dependencies": {
"jquery": "^2.1.1"
}
}