-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.4 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
{
"name": "watch-detector",
"version": "1.0.2",
"description": "",
"homepage": "https://github.com/ember-cli/watch-detector#readme",
"bugs": {
"url": "https://github.com/ember-cli/watch-detector/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ember-cli/watch-detector.git"
},
"license": "MIT",
"files": [
"lib/*"
],
"main": "lib/index.js",
"scripts": {
"lint": "eslint lib test",
"lint:fix": "eslint --fix lib test",
"test": "mocha"
},
"dependencies": {
"heimdalljs-logger": "^0.1.10",
"silent-error": "^1.1.1",
"tmp": "^0.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"console-ui": "^3.1.1",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-mocha": "^6.1.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.0",
"mocha": "^6.2.0",
"mocha-eslint": "^5.0.0",
"prettier": "^1.18.2",
"release-it": "^12.2.1",
"release-it-lerna-changelog": "^1.0.3",
"sinon": "^7.4.2",
"sinon-chai": "^3.3.0"
},
"engines": {
"node": ">= 8"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md"
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
}
}
}