This repository has been archived by the owner on Oct 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
103 lines (103 loc) · 2.7 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
{
"name": "kasia",
"version": "4.1.0",
"description": "A React Redux toolset for the WordPress API",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"build": "rimraf lib && babel -d lib/ src/",
"lint": "snazzy",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"example:simple": "node examples/server.js",
"prepublish": "check-node-version --npm \">= 4.0.0\"",
"prepublishOnly": "in-publish && npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/outlandishideas/kasia.git"
},
"keywords": [
"javascript",
"react",
"redux",
"wordpress",
"word",
"press",
"wp-api",
"wp",
"api",
"saga"
],
"author": "Outlandish <[email protected]>",
"license": "MIT",
"bugs": "https://github.com/outlandishideas/kasia/issues",
"homepage": "https://github.com/outlandishideas/kasia#readme",
"dependencies": {
"humps": "2.0.0",
"is-node-fn": "1.0.0",
"lodash.merge": "4.3.5",
"normalizr": "2.0.1",
"pick-to-array": "1.0.0",
"react": "15.0.1",
"react-dom": "15.0.1",
"react-redux": "5.0.2",
"redux-saga": "0.13.0",
"wpapi": "0.11.0"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.18.2",
"babel-eslint": "7.1.1",
"babel-jest": "17.0.2",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-proto-to-assign": "^6.23.0",
"babel-polyfill": "6.7.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"check-node-version": "1.1.2",
"coveralls": "2.11.15",
"enzyme": "2.2.0",
"in-publish": "2.0.0",
"jest": "18.1.0",
"jest-cli": "17.0.3",
"lerna": "2.0.0-beta.31",
"react-addons-test-utils": "15.3.0",
"redux": "3.4.0",
"rimraf": "2.5.2",
"snazzy": "5.0.0",
"standard": "8.6.0"
},
"standard": {
"env": [
"jasmine"
],
"parser": "babel-eslint",
"ignore": [
"/lib",
"/packages"
]
},
"jest": {
"automock": true,
"verbose": true,
"testRegex": "/test/.*\\.js$",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/enzyme",
"<rootDir>/node_modules/lodash"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/__mocks__/",
"/__fixtures__/"
]
}
}