-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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
{
"name": "immutable-treeutils",
"version": "1.2.0",
"description": "Functional tree traversal helpers for ImmutableJS data structures",
"main": "index.js",
"scripts": {
"docs": "node scripts/docs.js",
"precommit": "lint-staged",
"test": "node scripts/test.js"
},
"lint-staged": {
"*.{js}": [
"prettier --write",
"npm run docs",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukasbuenger/immutable-treeutils.git"
},
"keywords": [
"immutable",
"tree"
],
"author": {
"name": "Lukas Bünger",
"url": "https://github.com/lukasbuenger"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/lukasbuenger/immutable-treeutils/issues"
},
"homepage": "https://github.com/lukasbuenger/immutable-treeutils",
"devDependencies": {
"acorn": "^5.7.1",
"glob": "^7.1.2",
"husky": "^0.14.3",
"jasmine": "^3.1.0",
"jasmine-spec-reporter": "^4.2.1",
"lint-staged": "^7.2.0",
"mustache": "^2.3.0",
"npm-check-updates": "^2.14.2",
"prettier": "^1.14.0"
},
"peerDependencies": {
"immutable": "^4.0.0-rc.9 || >=3.8"
}
}