-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
62 lines (62 loc) · 1.76 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
55
56
57
58
59
60
61
62
{
"name": "swap-core",
"version": "1.0.0",
"description": "Swap Core",
"homepage": "https://github.com/pavelivanov/swap",
"author": "Pavel Ivanov <[email protected]> (https://github.com/pavelivanov)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pavelivanov/swap.git"
},
"main": "lib/index.js",
"scripts": {
"test": "ava",
"watch": "cpx './src/**/*.js' ./app/src/swap -w",
"dev": "babel -w ./src --out-dir ./lib",
"build": "npm run clean && babel ./src --out-dir ./lib",
"dev:umd": "NODE_ENV=development webpack --config webpack.config.babel.js --watch",
"build:umd": "NODE_ENV=production webpack --config webpack.config.babel.js"
},
"peerDependencies": {
"bitcoinjs-lib": "~3.3.2"
},
"dependencies": {
"bitcoinjs-lib": "^3.3.2"
},
"devDependencies": {
"ava": "^1.0.0-beta.4",
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"colors": "^1.2.1",
"copy-and-watch": "^0.1.2",
"cpx": "^1.5.0",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15"
},
"ava": {
"files": [
"./src/swaps/btcSwap.spec.js"
],
"require": [
"./bootstrapAvaTests.js"
],
"concurrency": 5,
"failFast": true,
"failWithoutAssertions": false,
"compileEnhancements": false,
"babel": {
"testOptions": {
"babelrc": false
}
}
}
}