-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.49 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
{
"name": "json-git",
"version": "0.2.0",
"description": "A pure JS local Git to versionize any JSON",
"main": "./lib/createRepository.js",
"scripts": {
"build": "NODE_ENV=production babel --out-dir=lib --stage=0 --ignore=*Spec.js src",
"clean": "rm -rf lib",
"prepublish": "npm run clean && npm run build",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register --colors --reporter=spec --timeout=10000 --recursive --sort 'src/**/*Spec.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/RobinBressan/json-git.git"
},
"keywords": [
"git",
"json"
],
"author": "Robin Bressan <robin@buddey.net> (http://github.com/RobinBressan)",
"license": "MIT",
"bugs": {
"url": "https://github.com/RobinBressan/json-git/issues"
},
"homepage": "https://github.com/RobinBressan/json-git",
"dependencies": {
"lodash.clonedeep": "4.5.0",
"lodash.foreach": "4.5.0",
"lodash.get": "4.4.2",
"lodash.has": "4.5.2",
"lodash.intersection": "4.4.0",
"lodash.isequal": "4.5.0",
"lodash.memoize": "4.1.2",
"lodash.set": "4.3.2",
"lodash.unset": "4.5.2",
"lodash.zipobject": "4.1.3",
"rusha": "0.8.5"
},
"devDependencies": {
"babel-cli": "6.22.2",
"babel-core": "6.22.1",
"babel-preset-es2015": "6.22.0",
"babel-preset-stage-0": "6.22.0",
"eslint": "3.14.1",
"eslint-config-airbnb-base": "11.0.1",
"eslint-plugin-import": "2.2.0",
"expect": "1.20.2",
"mocha": "3.2.0"
}
}