-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 927 Bytes
/
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
{
"name": "exval",
"version": "0.2.0",
"description": "Allows taking snapshot of JavaScript objects including functions and classes and run it on other machine.",
"keywords": [
"uneval",
"eval",
"stringify",
"json",
"function",
"class",
"prototype",
"shallow",
"copy",
"snapshot"
],
"main": "exval.js",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "./node_modules/.bin/mocha"
},
"author": "Moshe Simantov <[email protected]> (http://www.moshesimantov.com)",
"license": "MIT",
"dependencies": {
"acorn": "^3.3.0"
},
"devDependencies": {
"eslint": "^2.10.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.0",
"mocha": "^2.4.5",
"mocha-eslint": "^2.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/remotelib/exval.git"
}
}