This repository was archived by the owner on Jul 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.87 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
72
73
74
{
"name": "deepest-lore",
"description": "Tools for creating and managing your deepest lore.",
"version": "2.0.0-3",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/jameswilddev/deepest-lore"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "0.1.3",
"@types/jasmine": "3.3.13",
"@types/minimist": "1.2.0",
"@types/neat-csv": "4.0.0",
"@types/node": "10.14.8",
"jasmine": "3.4.0",
"npm-run-all": "4.1.5",
"npm-watch": "0.6.0",
"nyc": "14.1.1",
"ts-node": "8.2.0",
"typescript": "3.5.1"
},
"dependencies": {
"chokidar": "^3.0.1",
"hyperapp": "^1.2.9",
"hyperapp-render": "^3.1.0",
"jsonschema": "^1.2.4",
"minimist": "1.2.0",
"neat-csv": "^5.0.0",
"rimraf": "^2.6.3"
},
"scripts": {
"test": "npm-run-all test-clean test-typescript test-jasmine",
"test-clean": "rimraf dist",
"test-typescript": "tsc",
"test-jasmine": "nyc jasmine --config=jasmine.json",
"test-watch": "npm-run-all test-clean test-watch-following-clean",
"test-watch-following-clean": "npm-run-all --parallel test-watch-typescript test-watch-jasmine",
"test-watch-typescript": "tsc --watch --preserveWatchOutput",
"test-watch-jasmine": "npm-watch test-jasmine"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"exclude": "**/*.tests.*",
"all": false,
"check-coverage": true,
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100,
"cache": false
},
"main": "dist/cli/index.js",
"bin": {
"deepest-lore": "dist/cli/index.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"!dist/**/*.tests.*"
],
"watch": {
"test-jasmine": {
"patterns": [
"dist/*.js"
],
"quiet": true
}
}
}