This repository has been archived by the owner on Apr 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.53 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
{
"name": "react-kup",
"version": "1.0.0",
"description": "react-kup is a simple, nonintrusive alternative to JSX for coffeescript",
"keywords": [
"react",
"coffee",
"coffeescript",
"jsx",
"alternative",
"markup",
"template",
"html",
"component",
"clientside",
"browser",
"amd",
"simple"
],
"homepage": "http://github.com/snd/react-kup",
"author": {
"name": "Maximilian Krüger",
"email": "kruemaxi@gmail.com",
"url": "http://github.com/snd"
},
"bugs": {
"url": "http://github.com/snd/react-kup/issues",
"email": "kruemaxi@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/snd/react-kup.git"
},
"license": "MIT",
"engines": {
"node": ">=0.10.0"
},
"peerDependencies": {
"react-dom": "~15.0.0",
"react": "~15.0.0"
},
"devDependencies": {
"codecov.io": "0.1.6",
"coffee-script": "1.10.0",
"tape": "4.5.1",
"coffeetape": "1.0.1",
"istanbul": "0.4.3",
"zuul": "3.10.1",
"coffeeify": "2.0.1",
"react-dom": "~15.0.0",
"react": "~15.0.0"
},
"scripts": {
"compile": "coffee --bare --compile --output lib/ src/",
"prepublish": "npm run compile",
"pretest": "npm run compile",
"test": "coffeetape test/*",
"test-with-coverage": "istanbul cover coffeetape test/* && cat ./coverage/coverage.json | ./node_modules/codecov.io/bin/codecov.io.js",
"test-in-browsers": "zuul test/*",
"test-zuul-local": "zuul --local 8080 test/*"
},
"main": "lib/react-kup"
}