-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.1 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
{
"name": "purescript-karma-test-unit",
"version": "3.0.0",
"description": "karma runner for purescript-test-unit",
"main": "src/Test/Unit/Karma.purs",
"directories": {
"pretest": "pulp build --main \"Test\" -I test --to karma/index.js",
"test": "karma start --single-run"
},
"scripts": {
"postinstall": "bower install",
"pretest": "pulp browserify --main 'Test.Main' -I test --to karma/index.js",
"test": "karma start --single-run"
},
"repository": {
"type": "git",
"url": "git@github.com:coot/purescript-karma-test-unit.git"
},
"keywords": [
"unit",
"test",
"karma",
"test-unit",
"purescript"
],
"author": {
"name": "Marcin Szamotulski",
"email": "profunctor@pm.me",
"url": "https://marcinszamotulski.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/coot/karma-purescript-test-unit/issues"
},
"homepage": "https://github.com/coot/karma-purescript-test-unit",
"devDependencies": {
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.0.0",
"karma-spec-reporter": "0.0.31"
},
"dependencies": {}
}