-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.35 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "onewallet-client-node",
"version": "0.2.6",
"description": "NodeJS client implementation for the One Wallet Service API",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir dist",
"build-test": "babel test --out-dir test-build",
"jshint": "jshint src/ test/",
"jscs": "jscs src/ test/",
"test": "npm run-script build && npm run-script build-test && npm run-script jshint && npm run-script jscs && DEBUG=onewallet* mocha -b -c --require babel-polyfill --require co-mocha test-build",
"prepublish": "npm run build"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Proto-Garage/onewallet-client-node.git"
},
"license": "ISC",
"homepage": "https://github.com/Proto-Garage/onewallet-client-node#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"co-mocha": "^1.1.2",
"cz-conventional-changelog": "^1.1.5",
"jscs": "^2.11.0",
"jshint": "^2.9.1",
"mocha": "^2.4.5",
"nock": "^7.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"babel-polyfill": "^6.7.2",
"bluebird": "^3.3.4",
"debug": "^2.2.0",
"lodash": "^4.6.1",
"node-uuid": "^1.4.7",
"request": "^2.69.0"
},
"babel": {
"presets": [
"babel-preset-es2015"
],
"retainLines": true
},
"jshintConfig": {
"node": true,
"undef": true,
"unused": true,
"esnext": true,
"sub": true,
"validthis": true,
"noyield": true,
"strict": true,
"globals": {
"describe": true,
"it": true,
"before": true,
"after": true
}
},
"jscsConfig": {
"preset": "jquery",
"fileExtensions": [
"js"
],
"requireCurlyBraces": true,
"requireSemicolons": true,
"requireSpacesInFunctionDeclaration": {
"beforeOpeningRoundBrace": true,
"beforeOpeningCurlyBrace": true
},
"disallowQuotedKeysInObjects": {
"allExcept": [
"reserved"
]
},
"validateIndentation": 2,
"maximumLineLength": 125,
"validateLineBreaks": "LF",
"disallowTrailingComma": true,
"disallowUnusedParams": true,
"disallowImplicitTypeConversion": [
"string"
],
"validateQuoteMarks": "'",
"esnext": true
}
}