-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.86 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "tt-react-calendar",
"version": "1.5.6",
"description": "A React calendar component with as few frills as humanly possible",
"main": "dist/",
"module": "dist-modules/",
"files": [
"dist/",
"dist-modules/"
],
"scripts": {
"build:example": "webpack --config ./example/webpack.prod.js",
"coverage": "nyc report",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"dist": "webpack --env dist && postcss src/styles.css -o dist/styles.css",
"dist:all": "npm run dist:modules && npm run dist:min",
"dist:min": "webpack --env dist:min && POSTCSS_MIN=true postcss src/styles.css -o dist/styles.css",
"dist:modules": "rimraf ./dist-modules && postcss src/styles.css -o dist-modules/styles.css && babel ./src --out-dir ./dist-modules",
"lint": "npm run lint:js && npm run lint:css",
"lint:css": "stylelint src/**/*.css",
"lint:js": "eslint src",
"prepublish": "npm run dist:all",
"start": "webpack-dev-server --hot --inline --config ./example/webpack.config.js",
"test": "NODE_ENV=test ava",
"test:coverage": "NODE_ENV=test:coverage nyc -s ava"
},
"ava": {
"require": [
"babel-register",
"./setup-tests"
],
"babel": "inherit"
},
"nyc": {
"include": "src/*.js",
"instrument": false,
"sourceMap": false
},
"keywords": [
"calendar",
"react",
"todaytix",
"simple",
"basic"
],
"author": "Jeremy Tice <[email protected]>",
"license": "MIT",
"repository": "TodayTix/tt-react-calendar",
"devDependencies": {
"ava": "^0.19.1",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-plugin-css-modules-transform": "^1.2.7",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.24.1",
"cheerio": "^0.22.0",
"clean-webpack-plugin": "^0.1.16",
"coveralls": "^2.13.1",
"css-loader": "^0.27.3",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.3",
"jsdom": "^9.12.0",
"lodash": "^4.17.4",
"lodash-webpack-plugin": "^0.11.2",
"nyc": "^10.2.0",
"postcss-cli": "^3.0.0",
"postcss-cssnext": "^2.10.0",
"postcss-loader": "^1.3.3",
"postcss-nested": "^1.0.0",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.6.1",
"sinon": "^2.1.0",
"style-loader": "^0.18.2",
"stylelint": "^7.10.1",
"stylelint-config-standard": "^16.0.0",
"tap-xunit": "^1.7.0",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.5.0"
},
"dependencies": {
"classnames": "^2.2.5",
"moment": ">= 2.10.7 < 3",
"react": "15.x",
"react-dom": "^15.6.1"
}
}