UNPKG

2.72 kBJSONView Raw
1{
2 "name": "ember-cli-page-object",
3 "version": "2.0.0",
4 "description": "This ember-cli addon eases the construction of page objects on your acceptance and integration tests",
5 "keywords": [
6 "acceptance",
7 "integration",
8 "components",
9 "ember",
10 "ember-addon",
11 "ember-cli",
12 "helper",
13 "page object",
14 "page-object",
15 "pageobject",
16 "testing"
17 ],
18 "homepage": "http://ember-cli-page-object.js.org",
19 "bugs": "https://github.com/san650/ember-cli-page-object/issues",
20 "repository": {
21 "type": "git",
22 "url": "https://github.com/san650/ember-cli-page-object.git",
23 "directory": "addon"
24 },
25 "license": "MIT",
26 "author": "Santiago Ferreira",
27 "exports": {
28 ".": "./dist/index.js",
29 "./*": "./dist/*",
30 "./addon-main.js": "./addon-main.js"
31 },
32 "types": "types.d.ts",
33 "files": [
34 "addon-main.js",
35 "dist",
36 "types.d.ts"
37 ],
38 "scripts": {
39 "build": "rollup --config",
40 "copy:md": "cp ../README.md ../LICENSE.md .",
41 "lint": "npm-run-all --aggregate-output --continue-on-error --parallel 'lint:!(fix)'",
42 "lint:fix": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*:fix",
43 "lint:js": "eslint . --cache",
44 "lint:js:fix": "eslint . --fix",
45 "prepublishOnly": "npm-run-all --aggregate-output --parallel build 'copy:md'",
46 "start": "rollup --config --watch",
47 "test": "mocha node-tests --recursive"
48 },
49 "dependencies": {
50 "@embroider/addon-shim": "^1.8.0",
51 "@ro0gr/ceibo": "^2.2.0",
52 "@types/jquery": "^3.5.14",
53 "jquery": "^3.5.1"
54 },
55 "devDependencies": {
56 "@babel/core": "^7.17.10",
57 "@babel/eslint-parser": "^7.17.0",
58 "@babel/plugin-proposal-class-properties": "^7.16.7",
59 "@babel/plugin-proposal-decorators": "^7.17.9",
60 "@embroider/addon-dev": "^1.8.0",
61 "@rollup/plugin-babel": "^5.3.1",
62 "chai": "^4.1.2",
63 "ember-cli-blueprint-test-helpers": "^0.18.2",
64 "eslint": "^8.14.0",
65 "eslint-config-prettier": "^8.5.0",
66 "eslint-plugin-ember": "^10.6.0",
67 "eslint-plugin-node": "^11.1.0",
68 "eslint-plugin-prettier": "^4.0.0",
69 "mocha": "^4.0.1",
70 "npm-run-all": "^4.1.5",
71 "prettier": "^2.6.2",
72 "rollup": "^2.71.1"
73 },
74 "peerDependencies": {
75 "@ember/jquery": "*",
76 "@ember/test-helpers": "^2.5.0"
77 },
78 "peerDependenciesMeta": {
79 "@ember/jquery": {
80 "optional": true
81 }
82 },
83 "engines": {
84 "node": "12.* || 14.* || >= 16"
85 },
86 "publishConfig": {
87 "registry": "https://registry.npmjs.org"
88 },
89 "ember": {
90 "edition": "octane"
91 },
92 "ember-addon": {
93 "main": "addon-main.js",
94 "type": "addon",
95 "version": 2,
96 "app-js": {}
97 },
98 "volta": {
99 "extends": "../package.json"
100 }
101}