-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
40 lines (40 loc) · 1.24 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
{
"name": "nem-sdk",
"version": "1.6.11",
"description": "NEM Developer Kit for Node.js and the browser",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/QuantumMechanics/NEM-sdk.git"
},
"scripts": {
"test": "mocha --compilers js:@babel/register -- recursive",
"build": "babel src --presets @babel/preset-env --out-dir build --source-maps",
"browserify": "mkdir -p dist && browserify -r through -r duplexer -r ./build/index.js:nem-sdk > dist/nem-sdk.js",
"minify": "uglifyjs dist/nem-sdk.js > dist/nem-sdk.min.js",
"version": "npm run build && npm run browserify && npm run minify && git add -A dist/",
"postversion": "git push origin master && git push --tags"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"crypto-js": "4.1.1",
"jquery": "3.6.0",
"request": "2.88.2",
"sockjs-client": "1.1.4"
},
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.0",
"babel-preset-env": "^1.7.0",
"browserify": "14.1.0",
"chai": "^3.5.0",
"duplexer": "0.1.1",
"mocha": "^2.4.5",
"through": "2.3.8",
"uglify-js": "~2.6.0"
}
}