-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 808 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "ember-test-selectors",
"private": true,
"description": "Enabling better Test selectors in Ember.js applications.",
"repository": "https://github.com/mainmatter/ember-test-selectors",
"license": "MIT",
"author": "Mainmatter GmbH",
"scripts": {
"build": "pnpm --filter 'classic-app' build",
"lint": "pnpm --filter '*' lint",
"lint:fix": "pnpm --filter '*' lint:fix",
"start:classic": "pnpm --filter 'classic-app' start",
"start:vite": "pnpm --filter 'vite-app' start",
"test": "pnpm --filter '*' test",
"test:all": "pnpm --filter '*' test:all",
"test:keep": "pnpm --filter '*' test:keep",
"test:node": "pnpm --filter 'node-tests' test",
"test:strip": "pnpm --filter '*' test:strip"
},
"devDependencies": {
"release-plan": "0.16.0"
}
}