-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.4 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.4 KB
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
{
"name": "datetime-entry",
"version": "2.1.1",
"description": "",
"main": "dist/datetime.min.js",
"scripts": {
"test": "karma start --singleRun --browsers Firefox",
"build:prod": "BABEL_ENV=production babel src -o dist/datetime.min.js ",
"build:stg": "BABEL_ENV=production babel src -o dist/datetime.stg.js --source-maps",
"build:dev": "babel src -o dist/datetime.js",
"build:gh": "BABEL_ENV=production babel src -o docs/datetime.min.js",
"build": "npm run build:dev && npm run build:prod && npm run build:stg && npm run build:gh"
},
"author": "Serge Balykov (ua9msn@gmail.com)",
"homepage": "https://github.com/ua9msn/datetime",
"keywords": [
"datetime",
"date-time",
"datepicker",
"timepicker"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ua9msn/datetime"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-minify": "^0.2.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.11.0",
"jasmine": "^2.8.0",
"jasmine-core": "^2.8.0",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-jasmine-jquery": "^0.1.1"
},
"peerDependencies": {
"jquery": "*"
},
"dependencies": {}
}