This repository was archived by the owner on Dec 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.97 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
59
60
61
62
63
64
65
66
{
"name": "structy",
"version": "2.0.0",
"description": "declarative immutable-ish data structures",
"main": "src/index.js",
"module": "src/index.js",
"author": "Andrew Grewell <andrewgrewell@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:andrewgrewell/structy.git"
},
"keywords": [
"javascript",
"data structure",
"immutable",
"data",
"collections",
"models"
],
"bugs": {
"url": "https://github.com/andrewgrewell/structy/issues"
},
"homepage": "https://github.com/andrewgrewell/structy#readme",
"scripts": {
"test": "jest",
"prepublish": "yarn test && yarn run lint:eslint",
"lint:eslint": "eslint --ignore-path .gitignore --ignore-pattern dist --fix",
"lint:staged": "lint-staged",
"example": "babel-node ./examples/basic.js",
"example:autoMethods": "babel-node ./examples/autoDefineMethods.js"
},
"lint-staged": {
"*.js": [
"lint:eslint",
"git add",
"jest --bail --findRelatedTests"
]
},
"pre-commit": "lint:staged",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.0",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^3.18.0",
"jest": "^22.4.3",
"jest-html-reporter": "^2.2.0",
"lint-staged": "^3.4.0",
"pre-commit": "^1.2.2"
},
"dependencies": {
"lodash.assign": "^4.2.0",
"lodash.every": "^4.6.0",
"lodash.foreach": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.isobject": "^3.0.2",
"lodash.map": "^4.6.0",
"lodash.merge": "^4.6.0",
"lodash.reduce": "^4.6.0",
"lodash.set": "^4.3.2"
}
}