-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.05 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.05 KB
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
67
68
69
70
71
72
73
74
75
{
"name": "cryptid",
"version": "0.5.0",
"description": "javascript client to cryptid analytics",
"website": "https://cryptid.adorable.io",
"main": "dist/index.js",
"bin": {
"cryptid": "./dist/bin/cryptid"
},
"scripts": {
"build:lib": "BABEL_ENV=lib $(npm bin)/babel src/ --ignore=src/__mocks__ --out-dir=dist --source-maps",
"build:bin": "BABEL_ENV=cli $(npm bin)/babel src/bin/ --out-dir=dist/bin --copy-files --source-maps",
"build": "rm -rf dist/ && npm run build:lib && npm run build:bin",
"watch:src": "npm run build:lib -- --watch",
"watch:bin": "npm run build:bin -- --watch",
"prepare": "npm run build",
"test": "jest"
},
"repository": "adorableio/cryptid-js",
"author": "Zachery Moneypenny <zachery@adorable.io>",
"bugs": {
"url": "https://github.com/adorableio/cryptid-js/issues",
"email": "hello@adorable.io"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"ci-publish": "^1.3.0",
"eslint": "^4.6.1",
"eslint-config-adorable": "0.0.6",
"eslint-plugin-jest": "^21.0.0",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"jest": "^21.0.1",
"jq2": "^1.0.1",
"semver": "^5.4.1"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/src/**",
"!**/src/__mocks__/**",
"!**/src/browser.js",
"!**/src/bin/**"
]
},
"dependencies": {
"apollo-client": "^1.9.3",
"chalk": "^2.1.0",
"cli-logger": "^0.5.40",
"csv-stringify": "^1.0.4",
"easy-table": "^1.1.0",
"graphql-tag": "^2.4.2",
"inquirer": "^3.2.3",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.4",
"md5": "^2.2.1",
"preferences": "^0.2.1",
"request": "^2.81.0",
"reqwest": "^2.0.5",
"xhr2": "^0.1.4",
"yargs": "^10.0.3"
},
"eslintConfig": {
"extends": [
"adorable"
],
"rules": {
"no-console": "warn"
}
}
}