|
1 | 1 | { |
2 | | - "name": "micro-analytics-cli", |
3 | | - "version": "2.2.0", |
4 | | - "description": "Public analytics as a Node.js microservice, no sysadmin experience required.", |
5 | | - "bin": { |
6 | | - "micro-analytics": "./cli.js" |
7 | | - }, |
8 | | - "files": [ |
9 | | - "dist", |
10 | | - "src", |
11 | | - "cli.js", |
12 | | - "adapter-tests/unit-tests.js" |
13 | | - ], |
14 | | - "engineStrict": true, |
15 | | - "engines": { |
16 | | - "node": ">=6.0.0" |
17 | | - }, |
| 2 | + "name": "micro-analytics", |
| 3 | + "private": true, |
| 4 | + "license": "MIT", |
| 5 | + "repository": "https://github.com/micro-analytics/micro-analytics", |
18 | 6 | "scripts": { |
19 | 7 | "precommit": "lint-staged", |
20 | | - "start": "./cli.js", |
21 | | - "now-build": "npm install micro-analytics-adapter-memory", |
22 | | - "now-start": "node src/index.js --adapter memory", |
23 | | - "build": "./node_modules/.bin/async-to-gen src --out-dir dist", |
24 | | - "prepublish": "npm run build", |
25 | | - "dev": "NODE_ENV=development nodemon --config package.json --exec async-node src/index.js", |
26 | 8 | "test": "jest", |
27 | | - "test-now-deployment": "curl --fail $NOW_URL/test?inc=false", |
28 | | - "format": "prettier --single-quote --trailing-comma es5 --write 'src/*.js' 'test/*.js' 'adapter-tests/*.js' '*.js'", |
29 | | - "lint": "prettier-check --single-quote --trailing-comma es5 'src/*.js' 'test/*.js' 'adapter-tests/*.js' '*.js'" |
| 9 | + "format": "prettier --single-quote --trailing-comma es5 --write 'packages/**/*.js'", |
| 10 | + "lint": "prettier-check --single-quote --trailing-comma es5 'packages/**/*.js'" |
30 | 11 | }, |
31 | 12 | "jest": { |
32 | 13 | "collectCoverageFrom": [ |
33 | | - "src/**/*.js" |
| 14 | + "**/src/**/*.js" |
34 | 15 | ] |
35 | 16 | }, |
36 | 17 | "lint-staged": { |
|
39 | 20 | "git add" |
40 | 21 | ] |
41 | 22 | }, |
42 | | - "author": "Max Stoiber <[email protected]> (http://mxstbr.com/)", |
43 | | - "license": "MIT", |
44 | | - "repository": "https://github.com/mxstbr/micro-analytics", |
45 | | - "dependencies": { |
46 | | - "args": "^2.3.0", |
47 | | - "escape-regex": "^1.0.7", |
48 | | - "flat-file-db": "^1.0.0", |
49 | | - "micro": "6.1.0", |
50 | | - "micro-analytics-adapter-flat-file-db": "^1.3.0", |
51 | | - "promise": "^7.1.1", |
52 | | - "shelljs": "^0.7.6", |
53 | | - "sse-channel": "^2.0.6", |
54 | | - "update-notifier": "^1.0.3", |
55 | | - "zen-observable": "^0.4.0" |
56 | | - }, |
57 | 23 | "devDependencies": { |
58 | | - "async-to-gen": "^1.3.0", |
59 | | - "babel-jest": "^19.0.0", |
60 | | - "babel-plugin-transform-async-to-generator": "^6.16.0", |
61 | | - "babel-polyfill": "^6.20.0", |
| 24 | + "babel-plugin-transform-async-to-generator": "^6.24.1", |
62 | 25 | "babel-preset-node6": "^11.0.0", |
63 | 26 | "husky": "^0.13.4", |
64 | | - "jest": "^19.0.2", |
65 | | - "lint-staged": "^3.5.0", |
66 | | - "micro-analytics-adapter-memory": "^0.1.0", |
67 | | - "nodemon": "^1.11.0", |
68 | | - "prettier": "^1.3.1", |
69 | | - "prettier-check": "^1.0.0", |
70 | | - "request-promise": "^4.1.1" |
| 27 | + "jest": "^20.0.4", |
| 28 | + "lerna": "^2.0.0-rc.5", |
| 29 | + "lint-staged": "^3.6.0", |
| 30 | + "prettier": "^1.4.2", |
| 31 | + "prettier-check": "^1.0.0" |
71 | 32 | } |
72 | 33 | } |
0 commit comments