-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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": "@kuveytturk/boa-utils",
"private": true,
"author": "Kuveyt Turk BOA One Team",
"version": "0.1.4",
"description": "BOA Components Utility Package",
"keywords": [
"messaging",
"localization",
"utility"
],
"repository": {
"type": "git",
"url": "https://github.com/kuveytturk/boa.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kuveytturk/boa/issues"
},
"scripts": {
"prebuild": "rimraf build",
"build:es2015": "cross-env NODE_ENV=production babel --config-file ../../babel.config.js src --out-dir ./build --ignore \"src/**/*.test.js\" ",
"build:copy-files": "babel-node --config-file ../../babel.config.js ./scripts/copy-files.js",
"build": "yarn build:es2015 && yarn build:copy-files"
},
"dependencies": {
"iban": "^0.0.10",
"jquery": "^3.3.1",
"moment": "^2.24.0",
"numeral": "^2.0.4",
"phone-formatter": "^0.0.2"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=6.0.0"
}
}