-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.23 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.23 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
{
"name": "@colonise/test",
"version": "0.0.0",
"description": "TODO",
"keywords": [],
"author": "Patrick Stanford",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Colonise/TEST.git"
},
"homepage": "https://github.com/Colonise/TEST#readme",
"bugs": {
"url": "https://github.com/Colonise/TEST/issues"
},
"publishConfig": {
"access": "public"
},
"main": "index.js",
"typings": "index.d.ts",
"files": [
"**/*.*"
],
"scripts": {
"clean": "colonise-config clean",
"build": "colonise-config build",
"lint": "colonise-config lint",
"test": "colonise-config test",
"coverage": "colonise-config coverage",
"distribute": "colonise-config distribute",
"console-test": "ts-node ./source/test/test-reporter/console-test.ts",
"json-test": "ts-node ./source/test/test-reporter/json-test.ts",
"tap-test": "ts-node ./source/test/test-reporter/tap-test.ts"
},
"devDependencies": {
"@colonise/config": "^3.17.1"
},
"dependencies": {
"@colonise/utilities": "6.6.1",
"chalk": "^2.4.2",
"tslib": "latest"
}
}