This repository has been archived by the owner on Jun 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.69 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
54
55
56
57
58
{
"name": "lintl",
"description": "Generate static analysis config files, beautifully",
"author": "https://github.com/luke-j",
"repository": "https://github.com/luke-j/lintl",
"lisence": "MIT",
"scripts": {
"watchify": "watchify -vd -p browserify-hmr -e src/main.js -o public/app.js",
"serve": "http-server -c 1 -a localhost",
"dev": "npm-run-all --parallel watchify serve",
"build": "cross-env NODE_ENV=production browserify -e src/main.js | uglifyjs -c warnings=false -m > public/app.js",
"test": "karma start test/karma.conf.js"
},
"browserify": {
"transform": [
"vueify",
"babelify"
]
},
"dependencies": {
"bootstrap": "^3.3.6",
"bootswatch": "^3.3.6",
"clipboard": "^1.5.10",
"fastclick": "^1.0.6",
"font-awesome": "^4.6.1",
"highlight.js": "^9.3.0",
"vue": "^1.0.0",
"vue-resource": "^0.7.0",
"vue-router": "^0.7.13"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"babel-runtime": "^5.8.0",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"browserify-hmr": "^0.3.1",
"cross-env": "^1.0.5",
"eslint": "^1.10.3",
"eslint-plugin-html": "^1.1.0",
"http-server": "^0.9.0",
"karma": "^0.13.22",
"karma-browserify": "^5.0.5",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"less": "^2.6.1",
"npm-run-all": "^1.6.0",
"phantomjs": "^2.1.7",
"proxyquireify": "^3.0.1",
"uglify-js": "^2.5.0",
"vue-hot-reload-api": "^1.2.2",
"vueify": "^8.0.0",
"vueify-insert-css": "^1.0.0",
"watchify": "^3.4.0"
}
}