-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 1.03 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
{
"name": "marvel-api",
"version": "0.0.0",
"description": "React.js components and the Marvel API",
"main": "build/js/marvel.js",
"scripts": {
"clean": "rm -rf build && mkdir build build/css build/js",
"prebuild": "npm run clean && npm run copy",
"build": "npm run scripts & npm run styles",
"scripts": "browserify src/js/main.js -d -s marvelApi | uglifyjs -o build/js/marvel-api.js",
"styles": "lessc src/less/style.less --source-map-map-inline --clean-css --verbose build/css/marvel-api.css",
"copy": "npm run markup && npm run fonts",
"lint": "lessc --lint --strict-imports src/less/style.less & jshint src/js/*.js",
"markup": "cp -p src/index.html build",
"fonts": "cp -p src/vendor/font-awesome/fonts/* build/fonts",
"test": "npm run lint",
"postinstall": "bower install"
},
"author": "hontas",
"repository": {
"type": "git",
"url": "https://github.com/hontas/marvel-at-react.git"
},
"license": "MIT",
"devDependencies": {
"connect": "^2.15.0",
"lodash": "^2.4.1"
}
}