-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
53 lines (53 loc) · 1.46 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
47
48
49
50
51
52
53
{
"name": "anytime",
"version": "1.4.2",
"description": "A date/time picker",
"author": "Ben Gourley",
"license": "ISC",
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"homepage": "http://bengourley.github.io/anytime/",
"repository": {
"type": "git",
"url": "http://github.com/bengourley/anytime.git"
},
"main": "src/anytime.js",
"typings": "src/anytime.d.ts",
"scripts": {
"lint": "jshint . --reporter=./node_modules/jshint-full-path/index.js",
"pretest": "npm run-script lint",
"test": "istanbul cover ./node_modules/.bin/_mocha -- -R spec test",
"posttest": "istanbul check-coverage && rm -rf coverage",
"build": "gulp build:lib",
"prepublish": "npm test && npm prune && npm run-script build",
"buildwebsite": "gulp build:web",
"watch": "gulp watch:web",
"deploy": "gulp deploy"
},
"dependencies": {
"lodash.assign": "*",
"lodash.throttle": "*",
"moment": "^2.11.1",
"pad-number": "^0.0.4"
},
"devDependencies": {
"del": "^2.2.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.1.0",
"gulp-gh-pages": "^0.5.4",
"gulp-cssnano": "^2.1.0",
"gulp-header": "^1.7.1",
"gulp-htmlmin": "^1.3.0",
"gulp-jade": "^1.1.0",
"gulp-sass": "^2.1.1",
"istanbul": "^0.4.2",
"jsdom": "^7.2.2",
"jshint": "^2.9.1",
"jshint-full-path": "^1.1.1",
"mocha": "^2.3.4",
"moment-timezone": "^0.5.0",
"st": "^1.1.0",
"webpack": "^1.12.11"
}
}