-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
61 lines (61 loc) · 1.6 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
54
55
56
57
58
59
60
61
{
"name": "angular-datetime-input",
"version": "5.3.0",
"description": "A directive to add the behavior of datetime input on unsupported browsers",
"keywords": [
"angular",
"datetime",
"input",
"time",
"parser"
],
"eslintIgnore": [
"dist"
],
"scripts": {
"test": "eslint **/*.js --cache && c8 --reporter=lcov mocha",
"build": "rollup -c && node build-demo.js",
"watch": "rollup -cw",
"preversion": "npm test && npm run build",
"version": "git add .",
"postversion": "git push --follow-tags && npm publish"
},
"homepage": "https://github.com/eight04/angular-datetime",
"bugs": {
"url": "https://github.com/eight04/angular-datetime/issues",
"email": "eight04@gmail.com"
},
"license": "MIT",
"author": "eight <eight04@gmail.com>",
"main": "index.js",
"unpkg": "dist/datetime.js",
"repository": {
"type": "git",
"url": "https://github.com/eight04/angular-datetime.git"
},
"dependencies": {
"custom-input": "^0.3.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"angular": "^1.7.8",
"angular-mocks": "^1.7.8",
"babel-core": "^6.26.3",
"c8": "^5.0.1",
"eslint": "^5.16.0",
"eslint-config-angular": "^0.5.0",
"eslint-plugin-angular": "^4.0.1",
"jsdom": "^15.1.1",
"jsdom-global": "^3.0.2",
"mocha": "^6.1.4",
"rollup": "^1.13.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-cjs-es": "^0.8.0",
"rollup-plugin-node-resolve": "^5.0.1",
"rollup-plugin-uglify": "^6.0.2"
},
"peerDependencies": {
"angular": "^1.2.0"
}
}