-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.31 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": "parse-js",
"version": "0.8.0",
"description": "Utility library for object structure conversion.",
"keywords": [
"object",
"conversion",
"object conversion",
"format",
"util",
"casting",
"type cast"
],
"main": "dist/index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"test": "npm -s run test:lint && npm -s run test:unit",
"test:unit": "NODE_PATH=. istanbul cover node_modules/.bin/_mocha",
"test:lint": "eslint src",
"start": "node dist",
"prepublish": "npm -s run build",
"release": "npm version patch && npm publish",
"build": "babel -d dist src",
"dev": "nodemon dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ambassify/parse-js.git"
},
"author": "Jorgen Evens <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ambassify/parse-js/issues"
},
"homepage": "https://github.com/ambassify/parse-js#readme",
"dependencies": {
"compact-base64": "^2.0.0",
"lodash": "^4.10.0"
},
"devDependencies": {
"@ambassify/mocha-reporter": "^1.0.0",
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"eslint": "^7.18.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^10.2.0",
"nodemon": "^3.0.1"
}
}