-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
50 lines (50 loc) · 1.64 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
{
"name": "nasa.js",
"version": "0.2.1",
"homepage": "https://github.com/NasaTeam/Nasa.js",
"repository": "github:NasaTeam/Nasa.js",
"author": "cssmagic <[email protected]>",
"description": "Lightweight and friendly util library for DApp development on Nebulas Blockchain.",
"main": "./dist/nasa.js",
"typings": "./dist/nasa.d.ts",
"keywords": [
"nebulas",
"blockchain",
"dapp"
],
"license": "LGPL-3.0",
"scripts": {
"prepublish": "npm run dist",
"prewatch": "npm run predev",
"predev": "npm run clean && gulp lib",
"dist": "npm run dev && npm run wrap",
"wrap": "gulp dist",
"update-deps": "npm up nebpay.js && cp -rf ./node_modules/nebpay.js/dist/nebPay.js ./vendor/",
"clean": "rm -rf ./.tmp/* && rm -rf ./dist/*",
"watch": "cross-env NODE_ENV=development MIX_MODE=watch npm run mix -- --watch",
"dev": "cross-env NODE_ENV=development npm run mix",
"prod": "cross-env NODE_ENV=production npm run mix",
"mix": "webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {},
"devDependencies": {
"browser-sync": "^2.24.4",
"browser-sync-webpack-plugin": "^2.2.2",
"cmui": "^2.0.3",
"cmui-gearbox": "^0.7.1",
"cross-env": "^3.2.3",
"express": "^4.16.3",
"glob": "^7.0.3",
"gulp": "4.*",
"gulp-stream-to-promise": "^0.1.0",
"gulpfiles": "^0.4.4",
"laravel-mix": "^2.1.0",
"nebpay.js": "^0.2.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"underscore": "^1.8.3",
"webpack": "^3.11.0",
"zepto.js": "1.*"
}
}