-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.52 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
{
"name": "musicmap",
"version": "0.2.1",
"scripts": {
"test": "ava --verbose",
"test:watch": "npm run test -- -w",
"clean": "rm -rf ./dist && mkdir dist",
"copy:files": "rsync -avz src/ dist/ --exclude '*.js' --exclude '.*' --exclude 'lib' --exclude 'styles'",
"copy:license": "cp LICENSE dist/",
"copy": "npm run copy:files & npm run copy:license",
"build:css": "stylus --compress src/styles/main.styl -o dist/musicmap.css",
"build:js": "browserify src/main.js -o dist/musicmap.js -t babelify -t uglifyify",
"build": "npm run clean && npm run copy & npm run build:css & npm run build:js",
"watch:css": "npm run build:css -- -w",
"watch:js": "watchify src/main.js -v -o dist/musicmap.js -t babelify -t uglifyify --debug",
"watch": "npm run clean && npm run copy & npm run watch:css & npm run watch:js"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register",
"babel-polyfill"
]
},
"repository": {
"type": "git",
"url": "https://github.com/mallendeo/MusicMap.git"
},
"author": "@mallendeo",
"devDependencies": {
"ava": "^0.15.2",
"babel-core": "^6.9.1",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"eslint": "^2.13.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"stylus": "^0.54.5",
"uglifyify": "^3.0.2",
"watchify": "^3.7.0"
}
}