-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
77 lines (77 loc) · 2.57 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
72
73
74
75
76
77
{
"name": "marko-widgets",
"description": "Module to support binding of behavior to rendered UI components rendered on the server or client",
"repository": {
"type": "git",
"url": "https://github.com/marko-js/marko-widgets.git"
},
"scripts": {
"test": "npm run test-server -s && npm run test-browser -s && npm run jshint --silent",
"test-server": "mocha --ui bdd --reporter spec ./test/",
"test-browser": "node test/browser-tests-runner/cli.js test/browser-tests.js --automated && npm run test-browser-pages",
"test-browser-pages": "node test/browser-tests-runner/cli.js --pages --automated",
"test-browser-dev": "browser-refresh test/browser-tests-runner/cli.js test/autotests-browser.js --server",
"test-page": "browser-refresh test/browser-tests-runner/cli.js test/autotests-browser.js --server --page",
"jshint": "jshint lib/ taglib/ *.js"
},
"author": "Patrick Steele-Idem <[email protected]>",
"maintainers": "Patrick Steele-Idem <[email protected]>",
"dependencies": {
"complain": "^1.0.0",
"events": "^1.0.2",
"lasso-modules-client": "^1.0.0",
"listener-tracker": "^1.0.2",
"morphdom": "^1.4.6",
"raptor-async": "^1.1.2",
"raptor-dom": "^1.1.0",
"raptor-json": "^1.0.1",
"raptor-logging": "^1.0.1",
"raptor-polyfill": "^1.0.0",
"raptor-pubsub": "^1.0.2",
"raptor-renderer": "^1.4.4",
"raptor-util": "^2.0.0",
"resolve-from": "^1.0.1",
"try-require": "^1.2.1",
"warp10": "^1.3.6"
},
"peerDependencies": {
"marko": "^3.0.0"
},
"devDependencies": {
"app-module-path": "^1.0.1",
"argly": "^1.0.0",
"async": "^0.9.0",
"browser-refresh": "^1.6.0",
"browser-refresh-taglib": "^1.1.0",
"chai": "^3.5.0",
"child-process-promise": "^2.0.3",
"express": "^4.14.0",
"ignoring-watcher": "^1.0.2",
"jquery": "^2.1.3",
"jshint": "^2.9.1",
"lasso": "^2.4.1",
"lasso-marko": "^2.0.4",
"marko": "^3.0.0-alpha.1",
"mkdirp": "^0.5.1",
"mocha": "^2.4.5",
"mocha-phantomjs": "^4.1.0",
"phantomjs-prebuilt": "^2.1.13",
"promise-polyfill": "^6.0.2",
"raptor-args": "^1.0.2",
"raptor-strings": "^1.0.0",
"sinon": "^3.2.0"
},
"license": "Apache-2.0",
"bin": {},
"main": "lib/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"browser": {
"./lib/index.js": "./lib/index-browser.js",
"./lib/uniqueId.js": "./lib/uniqueId-browser.js",
"./lib/init-widgets.js": "./lib/init-widgets-browser.js",
"./lib/defineWidget.js": "./lib/defineWidget-browser.js"
},
"version": "6.6.6"
}