-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
28 lines (27 loc) · 913 Bytes
/
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
{
"name": "mtgicons",
"devDependencies": {
"less": "latest",
"cssmin": "latest",
"nodemon":"latest",
"backstopjs": "latest",
"casperjs": "latest",
"phantomjs": "latest"
},
"watch": {
"build-less": "src/*.less",
"deploy-assets": "src/fonts/*"
},
"scripts": {
"build": "npm install && npm run build:less && npm run deploy:assets",
"build:less": "lessc src/mtgicons.less | cssmin > dist/mtgicons.css",
"deploy:assets": "cp -rf src/fonts/ dist/",
"watch": "nodemon --watch src --exec \"npm run build\"",
"watch:less": "nodemon --delay 1ms --watch src --exec \"npm run build:less\"",
"test:update": "npm run build && cd node_modules/backstopjs && gulp reference && cd ../..",
"test": "npm run build && cd node_modules/backstopjs && gulp test && cd ../.."
},
"dependencies": {
},
"repository": "https://github.com/jninnes/mtgicons"
}