-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
89 lines (89 loc) · 2.47 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "ember-lodash",
"version": "4.18.0",
"description": "Lodash in ES6 for Ember.js apps",
"keywords": [
"ember-addon"
],
"license": "MIT",
"author": "Mike North <[email protected]> (http://mike.works)",
"directories": {
"doc": "doc",
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/mike-north/ember-lodash.git"
},
"scripts": {
"build": "ember build",
"lint:js": "eslint .",
"start": "ember serve",
"test": "ember try:each",
"semantic-release": "semantic-release"
},
"homepage": "https://github.com/mike-north/ember-lodash",
"engines": {
"node": "^4.5 || 6.* || >= 7.*"
},
"bugs": {
"url": "https://github.com/mike-north/ember-lodash/issues"
},
"dependencies": {
"broccoli-debug": "^0.6.1",
"broccoli-funnel": "^2.0.1",
"broccoli-merge-trees": "^3.0.0",
"broccoli-string-replace": "^0.1.1",
"ember-cli-babel": "^7.0.0",
"lodash-es": "^4.17.4"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@commitlint/travis-cli": "8.3.5",
"@ember/optional-features": "0.7.0",
"@ember/test-helpers": "1.1.0",
"@mike-north/js-lib-renovate-config": "1.1.5",
"@mike-north/js-lib-semantic-release-config": "1.0.1",
"broccoli-asset-rev": "3.0.0",
"ember-cli-dependency-checker": "3.3.2",
"ember-cli-eslint": "5.1.0",
"ember-cli-htmlbars": "6.2.0",
"ember-cli-inject-live-reload": "2.1.0",
"ember-cli-shims": "1.2.0",
"ember-cli-sri": "2.1.1",
"ember-cli-test-loader": "2.2.0",
"ember-cli-uglify": "3.0.0",
"ember-cli": "3.28.6",
"ember-disable-prototype-extensions": "1.1.3",
"ember-export-application-global": "2.0.1",
"ember-load-initializers": "2.1.2",
"ember-maybe-import-regenerator": "0.1.6",
"ember-qunit": "5.1.5",
"ember-resolver": "8.1.0",
"ember-source-channel-url": "2.0.1",
"ember-source": "4.12.4",
"ember-try": "1.2.1",
"eslint-plugin-ember": "10.6.1",
"eslint-plugin-node": "11.1.0",
"loader.js": "4.7.0",
"semantic-release": "15.12.5",
"qunit-dom": "2.0.0"
},
"ember-addon": {
"configPath": "tests/dummy/config"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "./node_modules/.bin/commitlint -e $HUSKY_GIT_PARAMS"
}
},
"release": {
"extends": "@mike-north/js-lib-semantic-release-config"
}
}