-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.89 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.89 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
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
{
"name": "bitclock-browser",
"version": "0.2.0-beta.2",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/BitClock/bitclock-browser.git"
},
"author": {
"name": "Bernard McManus",
"email": "bernard.mcmanus.iv@gmail.com",
"url": "https://github.com/BitClock"
},
"homepage": "https://bitclock.io",
"main": "dist",
"scripts": {
"build": "npm run build:babel && npm run build:webpack",
"build:babel": "cross-env NODE_ENV=${NODE_ENV:-production} RUNTIME_HELPERS=1 babel src --out-dir dist --source-maps inline",
"build:webpack": "cross-env NODE_ENV=${NODE_ENV:-production} webpack --progress --hide-modules --config ./webpack/config.babel.js",
"clean": "rimraf dist",
"lint": "eslint . --ignore-path .gitignore",
"lint:staged": "lint-staged",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"pretest": "npm run clean && npm run lint",
"start": "NODE_ENV=development npm run build:webpack && static dist -a 0.0.0.0 -p 9000",
"test": "exit 0",
"version": "echo $npm_package_version"
},
"lint-staged": {
"*.js": "lint"
},
"pre-commit": "lint:staged",
"dependencies": {
"babel-polyfill": "next",
"babel-runtime": "next",
"bitclock": "^0.10.1-beta.1",
"deepmerge": "^2.0.0"
},
"devDependencies": {
"babel-cli": "next",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.1",
"babel-plugin-async-import": "^1.0.0-alpha.1",
"babel-plugin-transform-object-rest-spread": "next",
"babel-plugin-transform-runtime": "next",
"babel-preset-env": "next",
"babel-register": "next",
"cross-env": "^5.0.5",
"eslint": "^3.5.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "^2.8.0",
"lint-staged": "^3.0.2",
"node-static": "^0.7.10",
"pre-commit": "^1.1.3",
"rimraf": "^2.6.0",
"webpack": "^3.8.0"
}
}