-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 3.16 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
{
"name": "ember-cli-nearley",
"version": "2.0.6",
"description": "Wrapper around nearley js to allow for language creation / parsing in ember js",
"keywords": [
"ember-addon",
"nearley",
"earley algorithm",
"moo"
],
"license": "MIT",
"author": "Devonte Emokpae",
"repository": "https://github.com/devotox/ember-cli-nearley",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"test": "ember test",
"lint:js": "eslint .",
"build": "ember build",
"start": "ember serve",
"preversion": "npm run lint:hbs && npm run lint:js && npm test",
"precommit": "lint-staged",
"update": "ncu -u -a; yarn",
"test:all": "ember try:each",
"postrelease": "npm publish",
"release": "npm version patch",
"lint:hbs": "ember-template-lint .",
"release-patch": "npm version patch",
"release-minor": "npm version minor",
"release-major": "npm version major",
"postversion": "git push && git push --tags",
"deploy:release": "npm run release; npm run deploy",
"format": "find app addon config tests -name '*.js' -type f | xargs prettier --write | xargs eslint --fix",
"nearley": "nearleyc app/grammar/index.ne -o app/grammar/index.js; node app/grammar/parser.js; rm -rf app/grammar/index.js",
"deploy": "ember github-pages:commit --message \"Deploy gh-pages from commit $(git rev-parse HEAD)\"; git push origin gh-pages; git checkout master",
"update:packages": "npx ncu -u --removeRange && yarn install --force --check-files --update-checksums --ignore-engines && yarn upgrade --force --ignore-engines",
"deploy:setup": "git add -A; git commit -m \"Added ember-cli-github-pages addon\"; git checkout --orphan gh-pages; rm -rf `bash -c \"ls -a | grep -vE '.gitignore|.git|node_modules|bower_components|([.]{1,2}/?$)'\"`; touch .gitkeep; git add -A; git commit -m \"initial gh-pages commit\"; git checkout master"
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"dependencies": {
"ember-cli-babel": "7.18.0",
"ember-cli-htmlbars": "4.2.2",
"moo": "0.5.1",
"nearley": "2.19.1"
},
"devDependencies": {
"@ember/optional-features": "1.3.0",
"broccoli-asset-rev": "3.0.0",
"ember-cli": "3.16.0",
"ember-cli-dependency-checker": "3.2.0",
"ember-cli-eslint": "5.1.0",
"ember-cli-github-pages": "0.2.2",
"ember-cli-htmlbars": "4.2.2",
"ember-cli-htmlbars-inline-precompile": "3.0.1",
"ember-cli-inject-live-reload": "2.0.2",
"ember-cli-sri": "2.1.1",
"ember-cli-template-lint": "2.0.0",
"ember-cli-uglify": "3.0.0",
"ember-disable-prototype-extensions": "1.1.3",
"ember-export-application-global": "2.0.1",
"ember-load-initializers": "2.1.1",
"ember-maybe-import-regenerator": "0.1.6",
"ember-qunit": "4.6.0",
"ember-resolver": "7.0.0",
"ember-source": "3.16.2",
"ember-source-channel-url": "2.0.1",
"ember-try": "1.4.0",
"eslint-plugin-ember": "7.8.1",
"eslint-plugin-node": "11.0.0",
"loader.js": "4.7.0"
},
"ember-addon": {
"configPath": "tests/dummy/config",
"demoURL": "https://devotox.github.io/ember-cli-nearley"
}
}