-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.3 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": "forgekit",
"version": "2.2.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "babel ./lib --out-dir ./",
"dev": "babel --watch ./lib --out-dir ./",
"prepublish": "npm run build",
"clear": "rimraf index.js",
"test": "jest --coverage",
"test-dev": "jest --watch --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tuchk4/forgekit.git"
},
"keywords": [
"react",
"components",
"ui",
"featuring",
"forgekit"
],
"author": "Valerii Sorokobatko <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/tuchk4/forgekit/issues"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"jest": "^17.0.0",
"react-test-renderer": "^15.3.2",
"rimraf": "^2.5.4"
},
"peerDependencies": {
"react": "^15.3.2"
},
"jest": {
"testPathIgnorePatterns": [
"__tests__/components/",
"__tests__/utils/"
]
},
"dependencies": {}
}