-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·71 lines (71 loc) · 1.8 KB
/
package.json
File metadata and controls
executable file
·71 lines (71 loc) · 1.8 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
{
"name": "u3.js",
"version": "0.3.12",
"description": "A general library wrapped in javascript for interacting with Ultrain",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test/index.test.js && mocha test/history.test.js --timeout 30000",
"dist": "rm -rf dist && mkdir -p dist && babel --copy-files src --out-dir dist && babel --copy-files index.js --out-dir dist",
"bundle": "browserify -o dist/u3.js -s U3 dist/index.js && uglifyjs dist/u3.js -o dist/u3.min.js --source-map --compress --mangle"
},
"repository": {
"type": "git",
"url": "git@github.com:ultrain-os/u3.js.git"
},
"bugs": {
"url": "https://github.com/ultrain-os/u3.js/issues"
},
"keywords": [
"sdk",
"javascript"
],
"author": "ben.yasin80@gmail.com",
"contributors": [],
"engines": {
"node": ">=8"
},
"dependencies": {
"async": "^2.6.2",
"axios": "^0.18.0",
"u3-utils": "^0.0.6",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.8.0"
},
"devDependencies": {
"@types/node": "^8.0.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "^6.24.1",
"body-parser": "^1.18.3",
"browserify": "^14.4.0",
"camel-case": "^3.0.0",
"chai": "4.1.2",
"express": "^4.16.3",
"mocha": "3.5.0",
"should": "1.2.2",
"uglify-es": "^3.3.9"
},
"license": "MIT",
"babel": {
"presets": [
"es2015"
],
"plugins": [
"syntax-async-functions",
"transform-regenerator",
[
"transform-runtime",
{
"polyfill": false,
"regenerator": true
}
]
]
}
}