-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.42 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
{
"name": "sbxcorejs",
"version": "1.4.7",
"description": "SbxCloud core library.",
"main": "index.js",
"scripts": {
"clean": "rimraf dist/*",
"transpile": "tsc",
"package": "rollup -c",
"minify": "./node_modules/uglify-js/bin/uglifyjs dist/bundles/sbxcore.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/sbxcore.umd.min.js",
"copy": "cpx './package-dist.json' dist && renamer --find 'package-dist.json' --replace 'package.json' ./dist/*",
"build": "npm run clean && npm run transpile && npm run package && npm run minify && npm run copy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sbxcloud/sbxcorejs.git"
},
"keywords": [
"sbx",
"sbxcore",
"sbxcloud"
],
"author": {
"name": "Alexander Taborda Acosta",
"email": "alextab93@gmail.com"
},
"contributors": [
{
"name": "Luis Guzman",
"email": "lgguzman890414@gmail.com"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/sbxcloud/sbxcorejs/issues"
},
"homepage": "https://github.com/sbxcloud/sbxcorejs#readme",
"dependencies": {
"sbx-querybuilder": "^1.0.8"
},
"devDependencies": {
"cpx": "^1.5.0",
"renamer": "^0.6.1",
"rimraf": "^2.6.2",
"rollup": "^0.56.1",
"rollup-plugin-node-resolve": "^3.0.3",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"typescript": "^2.7.2",
"uglify-js": "^3.3.11"
}
}