-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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": "parse-json-or",
"version": "1.0.4",
"description": "Safely parse JSON strings while explicitly indicating the behaviour in case of a parsing error",
"main": "lib/parse-json-or.js",
"scripts": {
"build": "webpack --env dev && webpack --env build && npm run test",
"dev": "webpack --progress --colors --watch --env dev",
"test": "mocha --require babel-core/register --colors ./test/*.spec.js",
"test:watch": "mocha --require babel-core/register --colors -w ./test/*.spec.js"
},
"keywords": [
"parse",
"json",
"gracefil",
"error",
"optional",
"string"
],
"readme": "README.md",
"author": "Or Lavy <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/OrLavy/parse-json-or.git"
},
"bugs": {
"url": "https://github.com/OrLavy/parse-json-or/issues"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"mocha": "^5.0.5",
"webpack": "^3.10.0",
"webpack-cli": "^2.0.14"
},
"dependencies": {
"lodash": "^4.17.5"
}
}