-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.27 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.27 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
{
"name": "ember-scroll-modifiers",
"private": true,
"description": "Scroll-based Modifiers for Ember Applications",
"keywords": [
"ember-addon",
"modifier",
"modifiers",
"scroll"
],
"repository": "https://github.com/elwayman02/ember-scroll-modifiers",
"license": "MIT",
"author": "Jordan Hawker <[email protected]> (https://www.JordanHawker.com)",
"scripts": {
"build": "pnpm --filter '*' build",
"lint": "pnpm --filter '*' lint",
"lint:css": "pnpm --filter '*' lint:css",
"lint:css:fix": "concurrently \"pnpm:lint:css -- --fix\"",
"lint:fix": "pnpm --filter '*' lint:fix",
"lint:hbs": "pnpm --filter '*' lint:hbs",
"lint:hbs:fix": "pnpm --filter '*' lint:hbs:fix",
"lint:js": "pnpm --filter '*' lint:js",
"lint:js:fix": "pnpm --filter '*' lint:js:fix",
"start": "pnpm --filter 'demo-app' start",
"start:addon": "pnpm --filter 'ember-scroll-modifiers' start",
"start:test": "pnpm --filter 'test-app' start",
"test": "pnpm --filter 'test-app' test",
"test:ember": "pnpm --filter 'test-app' test:ember",
"test:ember-compatibility": "pnpm --filter 'test-app' test:compatibility"
},
"devDependencies": {
"release-plan": "^0.17.0"
},
"volta": {
"node": "18.20.4",
"pnpm": "10.19.0"
}
}