-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.2 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.2 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "casper",
"version": "1.0.0",
"description": "casper-lang",
"main": "index.js",
"dependencies": {
"acorn": "^7.1.1",
"child_process": "^1.0.2",
"expect": "^26.0.1",
"expect.js": "^0.3.1",
"lodash": "^4.17.19",
"ohm-js": "^0.14.0",
"pretty-js": "^0.2.0",
"set-value": "^3.0.1",
"yargs": "^15.3.1"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.21.1",
"jest": "^26.0.1"
},
"scripts": {
"lint": "eslint .",
"test": "jest test/**/*test.js",
"test:watch": "jest test/**/*test.js --watch"
},
"eslintIgnore": [
"freelancer.js",
"freelancer.min.js"
],
"jest": {
"collectCoverageFrom": [
"**/*.js",
"!**/casper.js",
"!**/coverage/**",
"!**/node_modules/**",
"!**/docs/**"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"transform": {}
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmoini/casper.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/dmoini/casper/issues"
},
"homepage": "https://github.com/dmoini/casper#readme"
}