This repository has been archived by the owner on Feb 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
65 lines (65 loc) · 1.91 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
{
"name": "irecord",
"version": "1.1.1",
"description": "An immutable object map that exposes an RxJS observable. Great for React.",
"main": "build/index.js",
"scripts": {
"init": "rimraf .validate.json && rimraf .jshintrc",
"clean": "rimraf build && mkdir -p build/test",
"lint": "eslint source && eslint test",
"prebuild": "npm run clean",
"build": "babel -d build source -s && babel -d build/test test",
"test": "node build/test/index.js",
"prepublish": "npm run build",
"validate": "npm run lint && npm run build && npm test",
"validate-dev": "npm run lint && npm run build && npm test | faucet",
"audit": "nsp package",
"missing": "dependency-check package.json",
"extra": "dependency-check package.json --extra --ignore",
"ok": "echo 'OK if the dependencies above are all devDependencies.' && echo 'Clean up any unused dependencies.'",
"deps": "npm run missing && npm run extra && npm run ok",
"precheck": "npm run validate",
"check": "npm run audit && npm run deps && npm outdated --depth 0",
"precommit": "pre-commit run"
},
"pre-commit": [
"check"
],
"repository": {
"type": "git",
"url": "https://github.com/ericelliott/istore.git"
},
"keywords": [
"immutable",
"rxjs",
"reactive",
"observable",
"store",
"react",
"flux"
],
"author": "Eric Elliott",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericelliott/irecord/issues"
},
"homepage": "https://github.com/ericelliott/irecord",
"devDependencies": {
"babel": "^5.5.7",
"babel-eslint": "^3.1.15",
"dependency-check": "^2.4.0",
"eslint": "^0.22.1",
"faucet": "0.0.1",
"nsp": "^1.0.1",
"precommit-hook": "^2.0.1",
"require-all": "^1.1.0",
"rimraf": "^2.4.0",
"tape": "^4.0.0"
},
"dependencies": {
"dpath": "^1.0.0",
"immutable": "^3.7.3",
"rx": "^2.5.3",
"stampit": "^2.0.3"
}
}