-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 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
{
"name": "@ournet/horoscopes-domain",
"version": "0.1.4",
"description": "Ournet horoscopes domain module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"pretest": "npm run clean && npm run tsc",
"test": "ava --no-cache --verbose lib/**/*.test.js",
"posttest": "npm run clean-test-code",
"tsc": "tsc",
"tscw": "tsc -w",
"preversion": "npm run tsc",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm run tsc && npm run clean-test-code",
"clean": "rimraf ./lib",
"clean-test-code": "rimraf ./lib/**/*.test.js && rimraf ./lib/**/*.test.d.ts"
},
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ournet/horoscopes-domain.git"
},
"keywords": [
"horoscopes",
"horoscopes-domain",
"domain",
"ournet"
],
"author": "Dumitru Cantea",
"license": "ISC",
"bugs": {
"url": "https://github.com/ournet/horoscopes-domain/issues"
},
"homepage": "https://github.com/ournet/horoscopes-domain#readme",
"devDependencies": {
"@types/joi": "^14.0.0",
"@types/node": "10.12.2",
"ava": "^0.25.0",
"rimraf": "^2.6.2",
"typescript": "3.1.6"
},
"dependencies": {
"@ournet/domain": "^0.3.3",
"ellipsize": "^0.1.0",
"joi": "^14.0.3",
"standard-text": "^0.1.1"
}
}