forked from gxchain/des-sdk-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.64 KB
/
package.json
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
{
"name": "des-sdk",
"version": "1.0.2",
"description": "",
"keywords": [
"gxs",
"des",
"sdk",
"data exchange"
],
"main": "./dist/index.js",
"scripts": {
"clean": "rm -rf ./dist/* & rm -rf ./build/* & rm -rf ./es/*",
"prebuild": "npm run clean",
"build": "BABEL_ENV=cjs babel lib -d dist",
"build-es": "BABEL_ENV=es babel lib -d es",
"postbuild": "npm run browserify && npm run build-es",
"build:watch": "babel lib -d dist --watch",
"prebrowserify": "rm -rf ./build/*",
"browserify": "browserify --full-paths dist/browser.js --standalone des_sdk_js -o build/dessdk.js -d",
"postbrowserify": "uglifyjs --compress --mangle --sequences --drop_console --output build/dessdk.min.js -- build/dessdk.js",
"prepublish": "npm run build",
"example:DESMerchantClientTest": "babel-node examples/DESMerchantClientTest"
},
"author": "David Lan <lanhaoxiang@qq.com> (https://github.com/lanhaoxiang)",
"contributors": [
"David Lan <lanhaoxiang@qq.com> (https://github.com/lanhaoxiang/)"
],
"engines": {
"node": ">= 6.0.0"
},
"jsnext:main": "./es/index.js",
"license": "MIT",
"dependencies": {
"async": "^2.6.0",
"crypto-js": "^3.1.9-1",
"gxbjs": "^1.2.80",
"superagent": "^3.8.3"
},
"devDependencies": {
"assert": "^1.3.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-1": "^6.16.0",
"browserify": "^13.1.0",
"esdoc": "^0.4.3",
"eslint": "^3.14.1",
"mocha": "^3.2.0",
"uglifyjs": "^2.4.11"
}
}