-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
119 lines (119 loc) · 2.94 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@nordnet/grid",
"version": "0.1.2",
"description": "Grid system",
"homepage": "https://nordnet.github.io/grid/",
"main": "dist",
"files": [
"src",
"dist"
],
"scripts": {
"precommit": "lint-staged",
"commit": "git-cz",
"commitmsg": "validate-commit-msg",
"prepush": "run-s test",
"start": "run-p watch docs:start",
"docs:install": "onpm docs install",
"docs:start": "onpm docs start",
"docs:deploy": "onpm docs run deploy",
"docs:deploy:ci": "onpm docs install && onpm docs run deploy:ci",
"watch": "npm run babel -- --watch",
"test": "ava",
"tdd": "ava --watch",
"coverage": "nyc ava",
"lint": "eslint .",
"clean": "rimraf dist",
"babel": "babel src -d dist --copy-files --ignore test.js,.md",
"build": "run-s clean babel",
"prepublish": "in-publish && run-s build || not-in-publish",
"precoveralls": "run-s coverage",
"coveralls": "coveralls < coverage/lcov.info",
"semantic-release": "semantic-release pre && npm publish && semantic-release post && npm run coveralls && npm run docs:deploy:ci"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma all --write",
"git add"
]
},
"keywords": [
"react",
"design",
"ui",
"ux",
"grid",
"column"
],
"author": "Vladimir Starkov <iamstarkov@gmail.com> (https://iamstarkov.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nordnet/grid.git"
},
"bugs": {
"url": "https://github.com/nordnet/grid/issues"
},
"ava": {
"files": [
"src/**/*test.js"
],
"require": [
"babel-register"
],
"babel": "inherit"
},
"nyc": {
"include": [
"src/*/index.js"
],
"reporter": [
"lcov",
"text"
]
},
"devDependencies": {
"ava": "^0.22.0",
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"commitizen": "^2.9.6",
"coveralls": "^2.13.1",
"cz-conventional-changelog": "^2.0.0",
"enzyme": "^2.8.2",
"eslint": "^4.3.0",
"eslint-config-pedant": "^0.10.0",
"eslint-plugin-react": "^7.0.1",
"eslint-plugin-require-path-exists": "^1.1.7",
"husky": "^0.14.3",
"in-publish": "^2.0.0",
"lint-staged": "^4.0.2",
"npm-run-all": "^4.0.2",
"nyc": "^11.0.2",
"othernpm": "^1.1.0",
"prettier": "^1.4.4",
"prop-types": "^15.5.10",
"react": "^15.5.3",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-jss": "^7.0.2",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.6.1",
"semantic-release": "^6.3.2",
"validate-commit-msg": "^2.12.2"
},
"peerDependencies": {
"prop-types": ">=15",
"react": ">=15",
"react-jss": ">=7"
},
"dependencies": {
"classnames": "^2.2.5"
}
}