forked from mozilla/webmaker-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.01 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
{
"name": "webmaker-android",
"version": "1.0.0",
"description": "Webmaker for Android.",
"scripts": {
"start": "npm run build",
"build": "node npm_tasks/explore.js webmaker-core -- npm install && npm run copy:env && npm run build:core && npm run copy:core",
"build:core": "node npm_tasks/explore.js webmaker-core -- npm run build",
"copy:core": "rimraf app/src/main/assets/www/ && mkdirp app/src/main/assets/www/ && ncp node_modules/webmaker-core/dest/ app/src/main/assets/www/",
"copy:env": "node npm_tasks/copy-env.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mozilla/webmaker-android.git"
},
"author": "",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozilla/webmaker-android/issues"
},
"dependencies": {
"webmaker-core": "https://github.com/mozilla/webmaker-core.git"
},
"homepage": "https://github.com/mozilla/webmaker-android",
"devDependencies": {
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"rimraf": "^2.4.1"
}
}