-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 908 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
{
"name": "maroon",
"version": "0.0.1",
"description": "A revolutionary Calendar written in JavaScript",
"main": "maroon.js",
"scripts": {
"postinstall": "npm test",
"build": "browserify --standalone maroon.js | uglifyjs > ./dist/maroonCalendar.min.js",
"watch": "watchify --standalone maroon.js | uglifyjs > ./dist/maroonCalendar.min.js",
"test": "node ./test/node-tests.js | tap-dot && npm run test-headless",
"test-headless": "./node_modules/zuul/bin/zuul --phantom -- ./test/*.js",
"test-local": "./node_modules/zuul/bin/zuul --local 9000 -- ./test/browser-tests.js",
"ci": "npm test"
},
"author": "Jannic Beck <[email protected]>",
"license": "MIT",
"devDependencies": {
"browserify": "^13.0.0",
"phantomjs": "^2.1.3",
"tap-dot": "^1.0.4",
"tape": "^4.4.0",
"uglify-js": "^2.6.2",
"watchify": "^3.7.0",
"zuul": "^3.9.0"
}
}