forked from sohwendy/Robotcorder
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
52 lines (52 loc) · 1.46 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
{
"name": "robocorp-recorder",
"version": "0.6.2",
"description": "A browser extension that records user action and scans the page to generate RobotFramework test script templates",
"main": "src.background.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"lint-fix": "./node_modules/.bin/eslint . --fix",
"test-local": "yarn run mocha -r test/setup.js test/* --reporter nyan",
"test-coverage": "yarn run nyc mocha -r test/setup.js test/* --reporter nyan",
"test": "yarn run lint-fix && yarn run test-local",
"export": "./script/export.command",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sohwendy/Robotcorder.git"
},
"author": "@xylix",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/robocorp/Robotcorder/issues"
},
"homepage": "https://github.com/robocorp/Robotcorder#readme",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.0.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.11.0",
"husky": "^5.0.6",
"jsdom": "^11.12.0",
"mocha": "^5.2.0",
"nyc": "^15.1.0",
"pinst": "^2.1.1",
"playwright": "^1.7.1",
"sinon-chrome": "^2.3.2"
},
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"test/**/*.js"
],
"all": true
}
}