This repository was archived by the owner on May 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.68 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.68 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
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
{
"name": "rage4service",
"description": "Promise-based communication with Rage4 API",
"main": "./lib/index.js",
"files": [
"lib"
],
"scripts": {
"compile": "coffee --compile --bare --no-header --output lib/ src/",
"test": "coffeelint -r src test && jest",
"prepublish": "npm run compile",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"keywords": [
"rage4",
"dns",
"api"
],
"repository": {
"type": "git",
"url": "https://github.com/proux/rage4service.git"
},
"author": "Nico Lindemann <nico.lindemann@proux.net>",
"license": "MIT",
"dependencies": {
"request-promise": "^4.2.4"
},
"devDependencies": {
"@semantic-release/release-notes-generator": "^7.1.4",
"babel-runtime": "^6.25.0",
"codeclimate-test-reporter": "^0.5.1",
"coffee-script": "^1.12.3",
"coffeelint": "^2.0.3",
"cz-conventional-changelog": "^2.0.0",
"jest": "^22.1.4",
"jest-coffee-preprocessor": "^1.0.0",
"nock": "^10.0.6",
"semantic-release": "^15.13.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"verbose": true,
"browser": true,
"collectCoverage": true,
"testURL": "http://localhost",
"testMatch": [
"**/?(*.)(spec|test).coffee"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/.c9"
],
"moduleFileExtensions": [
"coffee",
"litcoffee",
"js"
],
"transform": {
"^.+\\.(coffee|litcoffee)$": "jest-coffee-preprocessor"
}
},
"release": {
"generateNotes": "./node_modules/@semantic-release/release-notes-generator/dist"
}
}