This repository was archived by the owner on Jan 23, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.35 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.35 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
{
"name": "aaas",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npm run lint",
"lint": "eslint 'static/src/js/'",
"create-build-dirs": "mkdir -p static/build/js static/build/css static/build/fonts static/build/img",
"build-scss": "bash scripts/build-scss.sh",
"build-js": "bash scripts/build-js.sh",
"build-fonts": "cp -R node_modules/bootstrap-sass/assets/fonts/bootstrap/* static/build/fonts/ && cp -R node_modules/font-awesome/fonts static/build",
"build": "npm run create-build-dirs && npm run build-scss && npm run build-js && npm run build-fonts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hoily/aaas.git"
},
"author": "TheOrangeOne",
"license": "ISC",
"bugs": {
"url": "https://github.com/hoily/aaas/issues"
},
"homepage": "https://github.com/hoily/aaas#readme",
"dependencies": {
"bootstrap-sass": "=3.3.7",
"font-awesome": "=4.6.3",
"jquery": "=2.1.4"
},
"devDependencies": {
"autoprefixer": "=6.3.7",
"babel-preset-es2015": "=6.9.0",
"babelify": "=7.3.0",
"browserify": "=13.1.0",
"clean-css": "=3.4.19",
"eslint": "=1.5.0",
"eslint-config": "git://github.com/dabapps/eslint-config.git",
"node-sass": "=3.8.0",
"postcss-cli": "=2.5.2",
"sass-lint": "=1.8.2",
"uglify-js": "=2.7.0"
}
}