-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.74 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.74 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
{
"name": "codebite",
"version": "0.0.1",
"description": "Embeddable, runnable, piece of code. Backed by CodePicnic",
"main": "./lib/index.js",
"scripts": {
"test": "node_modules/.bin/mocha",
"build:css": "node_modules/.bin/node-sass sass/index.scss dist/css/index.css",
"watch:css": "node_modules/.bin/nodemon -e scss -x \"npm run build:css\"",
"build:js": "browserify ./lib/index.js -o dist/js/index.js --debug --verbose -t [ babelify --presets [ es2015 ] --plugins transform-react-jsx ]",
"watch:js": "watchify ./lib/index.js -o dist/js/index.js --debug --verbose -t [ babelify --presets [ es2015 ] --plugins transform-react-jsx ]",
"dist:js": "NODE_ENV=production npm run build:js && uglify -s ./dist/js/index.js -o ./dist/js/index.js",
"start": "node_modules/.bin/parallelshell \"npm run watch:js\" \"npm run watch:css\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodePicnic/codebite.git"
},
"keywords": [
"code",
"embed"
],
"author": "Gustavo Leon <gustavo@codepicnic.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodePicnic/codebite/issues"
},
"homepage": "https://github.com/CodePicnic/codebite#readme",
"dependencies": {
"ansi_up": "^1.3.0",
"codepicnic": "file:../codepicnic-javascript",
"lodash": "^4.13.1",
"ms": "^0.7.1",
"preact": "^6.4.0",
"ws": "^1.1.0"
},
"devDependencies": {
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"jscs": "^3.0.4",
"node-sass": "^3.7.0",
"nodemon": "^1.9.2",
"onchange": "^2.4.0",
"parallelshell": "^2.0.0",
"uglify": "^0.1.5"
}
}