forked from ractivejs/ractive
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
109 lines (109 loc) · 2.45 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "ractive",
"description": "Next-generation DOM manipulation",
"version": "0.7.3",
"homepage": "http://ractivejs.org",
"main": "build/ractive.js",
"keywords": [
"template",
"templating",
"data binding",
"binding",
"declarative",
"view model"
],
"author": {
"name": "Rich Harris"
},
"licenses": [
{
"type": "MIT"
}
],
"jam": {
"name": "ractive",
"main": "ractive.js",
"include": [
"ractive.js",
"build/ractive.js",
"build/ractive.runtime.js",
"build/ractive.min.js",
"build/ractive.runtime.min.js",
"build/ractive-legacy.js",
"build/ractive-legacy.runtime.js",
"build/ractive-legacy.min.js",
"build/ractive-legacy.runtime.min.js",
"README.md"
]
},
"categories": [
"DOM",
"Templating"
],
"bugs": {
"url": "https://github.com/ractivejs/ractive/issues"
},
"contributors": [
{
"name": "Max Ogden",
"web": "https://github.com/maxogden"
},
{
"name": "Ryan Ramage",
"web": "https://github.com/ryanramage"
},
{
"name": "Ayman Mackouly",
"web": "https://github.com/1N50MN14"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ractivejs/ractive.git"
},
"scripts": {
"test": "sh ./scripts/test.sh",
"start": "node_modules/.bin/gobble",
"build": "sh ./scripts/build.sh",
"release": "sh ./scripts/release.sh",
"fakebuild": "sh ./scripts/build.sh --fake",
"promises-aplus-tests": "./scripts/promises-aplus-tests.js"
},
"github": "https://github.com/ractivejs/ractive",
"devDependencies": {
"cheerio": "^0.18.0",
"esperanto": "^0.6.17",
"gobble": "^0.7.8",
"gobble-babel": "^4.0.0",
"gobble-cli": "^0.3.5",
"gobble-esperanto": "^0.2.3",
"gobble-esperanto-bundle": "^0.1.3",
"gobble-sorcery": "^0.3.0",
"jshint": "^2.5.11",
"junk": "^1.0.1",
"mocha": "^2.1.0",
"phantomjs": "^1.9.15",
"promises-aplus-tests": "*",
"sander": "^0.2.1",
"sorcery": "^0.4.0",
"uglify-js": "^2.4.16"
},
"testling": {
"html": "test/testling.html",
"browsers": [
"ie/8..latest",
"chrome/10.0",
"chrome/15.0",
"chrome/23..canary",
"firefox/3.6",
"firefox/7.0",
"firefox/12.0",
"firefox/18.0..nightly",
"opera/10..next",
"safari/4..latest",
"iphone/6.0",
"ipad/6.0",
"android-browser/4.2"
]
}
}