-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.66 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
{
"name": "riot-flipcard",
"version": "1.0.1",
"description": "A little double side modal",
"main": "lib/flipcard.js",
"repository": {
"type": "git",
"url": "https://github.com/crisward/riot-flipcard.git"
},
"scripts": {
"test": "karma start",
"tdd": "npm run watch & karma start --reporters=spec --browsers=Chrome --singleRun=false",
"watch": "riot -w src lib --template jade",
"build": "riot src lib --template jade"
},
"directories": {
"lib": "lib"
},
"browserify": {
"transform": [
[
"riotify",
{
"expr": false,
"type": "coffee",
"template": "jade",
"extension": ".tag"
}
],
[
"coffeeify",
{
"extension": ".coffee"
}
]
]
},
"author": "cris ward",
"license": "MIT",
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"devDependencies": {
"browserify-istanbul": "^0.2.1",
"chai": "^3.0.0",
"coffee-script": "^1.9.3",
"coffeeify": "^1.1.0",
"coveralls": "^2.11.4",
"es5-shim": "^4.4.1",
"istanbul": "^0.3.20",
"jade": "^1.9.2",
"karma": "^0.13.9",
"karma-browserify": "^4.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.1",
"karma-coverage": "^0.5.0",
"karma-mocha": "^0.1",
"karma-phantomjs-launcher": "^0.1",
"karma-sauce-launcher": "^0.2.14",
"karma-sinon": "^1.0.4",
"karma-spec-reporter": "0.0.20",
"mocha": "^2.0.1",
"riot": "^2.3.12",
"riotify": "^0.1.2",
"simulant": "^0.1.5",
"sinon": "^1.12.2",
"sinon-chai": "^2.8.0",
"stylus": "^0.53.0",
"watchify": "^3.2.1"
}
}