-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
53
{
"name": "fakelink-client",
"version": "0.1.0",
"description": "Fake your urls like a boss",
"main": "src/index.js",
"scripts": {
"start": "npm-run-all --parallel serve watch styles",
"watch": "watchify src/index.js -o build/bundle.js -v -t [ babelify --presets [ es2015 ]",
"serve": "serve",
"styles": "node-sass src/styles/app.scss build/app.css -w",
"release": "npm version patch && npm publish && git push --tags && git push",
"docker:build": "make docker_build",
"docker:run": "make docker_run",
"build:js": "browserify src/index.js -o build/bundle.js -t [ babelify --presets [ es2015 ]",
"build:css": "node-sass src/styles/app.scss build/app.css",
"build": "npm run build:js && npm run build:css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devlucky/fakelink-client.git"
},
"author": "Devlucky",
"license": "MIT",
"bugs": {
"url": "https://github.com/devlucky/fakelink-client/issues"
},
"homepage": "https://github.com/devlucky/fakelink-client#readme",
"devDependencies": {
"kakapo": "^0.2.1",
"npm-run-all": "^3.1.1",
"serve": "^1.4.0",
"watchify": "^3.7.0"
},
"dependencies": {
"maggie": "^0.1.0",
"node-sass": "^3.10.1",
"babel-preset-es2015": "^6.16.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
}
}