-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "world-calendars",
"version": "1.0.3",
"description": "Convert between various world calendars",
"main": "dist/index.js",
"scripts": {
"clean": "cd dist && ls | grep -v README.md | xargs rm -rf",
"build": "node bin/build.js",
"start": "npm run clean && npm run build",
"version": "npm run build && git add -A dist dist/* jquery-src bin",
"test": "karma start test/karma.conf.js",
"test:jasmine": "jasmine test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexcjohnson/world-calendars.git"
},
"keywords": [
"calendar",
"date",
"international"
],
"author": "Alex Johnson",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexcjohnson/world-calendars/issues"
},
"homepage": "https://github.com/alexcjohnson/world-calendars#readme",
"dependencies": {
"object-assign": "^4.1.0"
},
"devDependencies": {
"jasmine": "^2.5.2",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-browserify": "^5.1.0",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"watchify": "^3.7.0"
}
}