-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 989 Bytes
/
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
{
"name": "teact",
"version": "1.3.0",
"description": "Generate React elements with CoffeeScript functions",
"homepage": "http://github.com/hurrymaplelad/teact",
"license": "MIT",
"main": "lib/teact",
"repository": {
"type": "git",
"url": "git://github.com/hurrymaplelad/teact.git"
},
"keywords": [
"react",
"cjsx",
"coffeescript",
"coffee-script",
"teacup",
"coffee",
"template",
"render",
"view",
"html",
"coffeekup",
"coffeecup",
"drykup",
"express"
],
"devDependencies": {
"benchmark": "^1.0.0",
"coffee-script": ">=1.8.0",
"expect.js": "^0.3.1",
"mocha": "^2.3.3",
"react-dom": "^15.4.1",
"react": "^15.4.1"
},
"scripts": {
"pretest": "npm run compile",
"prepublish": "npm run compile",
"test": "mocha",
"compile": "coffee --compile --output lib/ src/",
"benchmark": "coffee test/benchmarks"
},
"peerDependencies": {
"react": "^15.4.1"
}
}