-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "RxMorse",
"description": "Morse code simulator app",
"version": "0.0.0",
"author": "moutend <[email protected]>",
"bugs": {
"url": "https://github.com/moutend/RxMorse/issues"
},
"dependencies": {},
"devDependencies": {
"rx": "*",
"babel": "^5.8.23",
"babel-eslint": "^4.1.1",
"browserify": "^11.0.1",
"eslint": "^1.3.1",
"espower-babel": "^3.3.0",
"isparta": "^3.0.4",
"mocha": "^2.3.0",
"power-assert": "^1.0.0",
"uglify-js": "^2.4.24"
},
"files": [
"package.json",
"README.md",
"index.js",
"lib"
],
"homepage": "https://github.com/moutend/RxMorse/",
"keywords": [],
"licenses": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/moutend/RxMorse.git"
},
"scripts": {
"build": "npm run build-to5 && npm run build-browser && npm run build-minify",
"build-browser": "browserify lib/ --standalone App --outfile playground/js/main.js",
"build-minify": "uglifyjs playground/js/main.js -o playground/js/main.min.js",
"build-to5": "babel src --out-dir lib",
"lint": "eslint src test",
"test": "mocha --compilers js:espower-babel/guess",
"deploy": "git subtree push --prefix playground/ origin gh-pages"
}
}