UNPKG

2.2 kBJSONView Raw
1{
2 "name": "observed-remove",
3 "version": "1.5.5",
4 "main": "dist/index.js",
5 "repository": "git@github.com:wehriam/observed-remove",
6 "author": "John Wehr <johnwehr@gmail.com>",
7 "license": "MIT",
8 "scripts": {
9 "build": "rm -rf ./dist; flow-remove-types ./src --out-dir ./dist && flow-copy-source ./src ./dist",
10 "flow-typed": "./node_modules/.bin/flow-typed install --overwrite",
11 "test": "yarn lint && yarn test:js",
12 "test:js": "cross-env NODE_ENV=test jest tests",
13 "lint": "npm run lint:js && npm run lint:flow",
14 "lint:js": "eslint -c ./.eslintrc --no-eslintrc --fix .",
15 "lint:flow": "flow --show-all-errors",
16 "coverage": "codecov",
17 "documentation": "documentation readme src/set.js --section='Set API' && documentation readme src/map.js --section='Map API'",
18 "start-pre-commit": "git stash -q --keep-index",
19 "end-pre-commit": "git add -u && git stash pop -q"
20 },
21 "pre-commit": [
22 "lint",
23 "start-pre-commit",
24 "build",
25 "documentation",
26 "end-pre-commit"
27 ],
28 "jest": {
29 "coverageDirectory": "./coverage/",
30 "collectCoverage": true,
31 "collectCoverageFrom": [
32 "src/*.js"
33 ],
34 "transformIgnorePatterns": [
35 "node_modules/(?!observed-remove)/"
36 ],
37 "transform": {
38 "^.+\\.js(?:\\.flow)?$": "jest-flow-transform"
39 }
40 },
41 "devDependencies": {
42 "babel-eslint": "^8.2.1",
43 "codecov": "^3.0.0",
44 "cross-env": "^5.1.3",
45 "documentation": "^5.3.5",
46 "eslint": "^4.17.0",
47 "eslint-config-bunchtogether": "^1.1.4",
48 "eslint-plugin-flowtype": "^2.42.0",
49 "eslint-plugin-flowtype-errors": "^3.3.7",
50 "eslint-plugin-import": "^2.8.0",
51 "eslint-plugin-jest": "^21.7.0",
52 "eslint-plugin-jsx-a11y": "^6.0.3",
53 "eslint-plugin-react": "^7.6.1",
54 "expect": "^22.1.0",
55 "flow-bin": "^0.64.0",
56 "flow-remove-types": "^1.2.3",
57 "flow-typed": "^2.3.0",
58 "jest": "^22.1.4",
59 "jest-flow-transform": "^1.0.1",
60 "pre-commit": "^1.2.2",
61 "uuid": "^3.2.1"
62 },
63 "dependencies": {
64 "directed-graph-map": "^1.2.3",
65 "flow-copy-source": "^1.2.2",
66 "json-stringify-deterministic": "^1.0.1",
67 "murmur-hash": "^1.0.0",
68 "node-rsa": "^0.4.2"
69 }
70}