forked from PrestaShopCorp/modules-testing-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.55 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
{
"name": "prestashop_test_lib",
"version": "0.0.7",
"description": "version select resolver",
"repository": {
"type": "git",
"url": "git+https://github.com/PrestaShopCorp/prestashop_test_lib.git"
},
"author": "PrestaShop",
"license": "OSL-3.0",
"npm-link": "https://www.npmjs.com/package/prestashop_test_lib",
"bugs": {
"url": "https://github.com/PrestaShopCorp/prestashop_test_lib/issues"
},
"homepage": "https://github.com/PrestaShopCorp/prestashop_test_lib#readme",
"scripts": {
"ln": "rm -rf ./node_modules/prestashop_test_lib && ln -s .. ./node_modules/prestashop_test_lib",
"allTests": "./node_modules/mocha/bin/mocha --recursive --file kernel/utils/setup.js tests",
"uiTests": "./node_modules/mocha/bin/mocha --recursive --file kernel/utils/setup.js tests/ui",
"unitTests": "./node_modules/mocha/bin/mocha --recursive tests/units",
"lint": "eslint --fix --ignore-path .gitignore ."
},
"_moduleAliases": {
"@resolvers": "kernel/resolvers",
"@versions": "versions",
"@utils": "kernel/utils",
"@kernel": "kernel",
"@unitTests": "tests/units",
"@uiTests": "tests/ui"
},
"dependencies": {
"module-alias": "^2.2.2",
"playwright": "^1.1.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-string": "^1.5.0",
"eslint-config-prestashop": "0.0.2",
"mocha": "^6.1.4",
"mochawesome": "^2.3.0",
"babel-eslint": "^10.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-html": "^6.0.2",
"eslint-plugin-import": "^2.20.2"
}
}