-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "ember-router-generator",
"version": "2.0.0",
"description": "MicroLib to add or remove routes from your Ember.js router.",
"main": "index.js",
"files": [
"index.js",
"lib/"
],
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha tests/**/*-test.js",
"ci": "mocha tests/**/*-test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ember-cli/ember-router-generator.git"
},
"dependencies": {
"@babel/parser": "^7.14.0",
"@babel/traverse": "^7.14.8",
"recast": "^0.19.1"
},
"devDependencies": {
"assertion-error": "^1.1.0",
"chai": "^4.3.4",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^6.2.2",
"mocha-eslint": "^5.0.0",
"prettier": "^1.19.1"
},
"author": "Adolfo Builes",
"license": "MIT",
"bugs": {
"url": "https://github.com/ember-cli/ember-router-generator/issues"
},
"homepage": "https://github.com/ember-cli/ember-router-generator",
"engines": {
"node": "8.* || 10.* || >= 12"
}
}