-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.11 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.11 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
{
"name": "@waves/data-entities",
"description": "Waves data types",
"version": "2.0.7",
"license": "Apache-2.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/wavesplatform/waves-data-entities.git"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"prepare": "tsc --declaration && npm run build && npm run uglify",
"uglify": "node_modules/.bin/uglifyjs ./dist/data-entities.js -o ./dist/data-entities.min.js",
"build": "./node_modules/.bin/browserify ./dist/index.js --node -s data-entities -u @waves/bignumber -o ./dist/data-entities.js",
"prepublish": "npm test",
"postversion": "npm publish && git push",
"test": "./node_modules/.bin/tsc -p ./test/tsconfig.json && ./node_modules/.bin/mocha $(find ./tmp -name '*.spec.js')"
},
"dependencies": {
"@waves/bignumber": "^1.1.1"
},
"devDependencies": {
"@types/chai": "^4.1.5",
"@types/mocha": "^5.2.5",
"browserify": "^16.2.3",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"typescript": "^3.0.3",
"uglify-js": "^3.4.9"
}
}