forked from Memcrab/react-pure-time
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.59 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
{
"name": "react-pure-time",
"version": "0.1.0",
"description": "React pure time component which format date and time",
"main": "dist/react-pure-time.min.js",
"jnext:main": "dist/react-pure-time.min.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && NODE_ENV=production npm run webpack:prod && npm run webpack:dev",
"clog": "conventional-changelog -i CHANGELOG.md -w",
"webpack:dev": "webpack --config webpack.config.dev.js",
"webpack:prod": "webpack --config webpack.config.js",
"release": "node ./scripts/release.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/max-mykhailenko/react-pure-time.git"
},
"keywords": [
"react",
"datetime",
"time",
"date",
"format"
],
"author": "Max Mykhailenko",
"license": "ISC",
"bugs": {
"url": "https://github.com/max-mykhailenko/react-pure-time/issues"
},
"homepage": "https://github.com/max-mykhailenko/react-pure-time#readme",
"devDependencies": {
"babel-cli": "6.7.7",
"babel-core": "6.7.7",
"babel-eslint": "6.0.4",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.3.13",
"babel-preset-stage-1": "6.5.0",
"conventional-changelog": "1.1.0",
"eslint": "2.9.0",
"eslint-config-airbnb": "^9.0.0",
"eslint-plugin-import": "^1.7.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.0.1",
"react": "15.0.2",
"react-dom": "15.0.2",
"rimraf": "2.5.2",
"webpack": "1.13.0",
"yargs": "4.6.0"
},
"peerDependencies": {
"react": "^15.0.0"
}
}