forked from ractivejs/ractive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "ractive",
"description": "Next-generation DOM manipulation",
"version": "0.8.0-edge",
"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",
"lint": "node node_modules/eslint/bin/eslint src/ --ext .js",
"lint-tests": "node node_modules/eslint/bin/eslint test/__nodetests test/__tests test/testdeps --ext .js",
"coverage": "karma start",
"coveralls": "npm run coverage && cat ./tmp/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./tmp/coverage"
},
"github": "https://github.com/ractivejs/ractive",
"devDependencies": {
"cheerio": "^0.20.0",
"coveralls": "~2.11",
"eslint": "^1.3.1",
"gobble": "^0.10.1",
"gobble-buble": "^0.4.16",
"gobble-cli": "^0.6.0",
"gobble-replace": "^0.3.1",
"gobble-rollup": "^0.25.0",
"jshint": "^2.9.1",
"junk": "^1.0.1",
"karma": "~0.13",
"karma-coverage": "~0.5",
"karma-phantomjs-launcher": "~1.0",
"karma-qunit": "~0.1",
"mocha": "^2.1.0",
"phantomjs-prebuilt": "~2.1",
"promises-aplus-tests": "^2.1.0",
"qunitjs": "~1.23",
"rollup": "^0.25.0",
"rollup-plugin-buble": "^0.4.0",
"sander": "^0.4.0",
"sorcery": "^0.9.2",
"surge": "^0.17.2",
"uglify-js": "^2.6.2"
},
"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"
]
}
}