-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.56 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
53
54
55
56
57
58
{
"name": "json-eval",
"version": "1.0.10",
"description": "Parse JSON-like strings into valid JS objects without eval",
"main": "src/index.js",
"scripts": {
"bundle": "node run/bundle-client.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint run && eslint src && eslint test",
"serve": "node run/serve",
"start": "npm run watch && npm run serve",
"test": "nyc mocha test/{amd,main}.js",
"watch": "nodemon --watch src -e js --exec 'npm run bundle'",
"wdio": "node test/wdio-es5 && node test/wdio-es6"
},
"husky": {
"hooks": {
"post-commit": "npm run bundle",
"pre-push": "npm run lint && npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/electric-eloquence/json-eval.git"
},
"keywords": [
"eval",
"json",
"parse"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/electric-eloquence/json-eval/issues"
},
"homepage": "https://github.com/electric-eloquence/json-eval#readme",
"dependencies": {
"json5": "2.2.3"
},
"devDependencies": {
"@wdio/cli": "8.3.10",
"@wdio/local-runner": "8.3.10",
"@wdio/mocha-framework": "8.3.0",
"@wdio/spec-reporter": "8.3.0",
"browserify": "^16.5.1",
"chai": "4.x",
"chai-webdriverio": "^1.0.0",
"chromedriver": "^110.0.0",
"coveralls": "3.x",
"eslint": "8.x",
"husky": "4.x",
"mocha": "8.x",
"nodemon": "^2.0.4",
"nyc": "15.x",
"uglify-es": "3.3.9",
"wdio-chromedriver-service": "8.1.1",
"webdriverio": "8.3.10"
}
}