-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 970 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 970 Bytes
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
{
"name": "state-model",
"version": "1.0.3",
"description": "Helps validate state transitions",
"main": "index.js",
"repository": "git@github.com:vadirn/state-model.git",
"author": "Vadim Kotov <igeeko@gmail.com>",
"license": "MIT",
"scripts": {
"test": "jest --config jest.config.js --verbose"
},
"peerDependencies": {
"lodash": "*"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.10.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"import-sort": "^3.3.0",
"import-sort-style-module": "^3.0.0",
"jest": "^21.2.1"
},
"importSort": {
".js, .jsx, .es6, .es": {
"parser": "babylon",
"style": "module"
}
}
}