This repository has been archived by the owner on Dec 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.52 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
{
"name": "@teamleader/ddd-action-string",
"version": "0.1.1",
"description": "Helpers to create domain-driven design (DDD) inspired action strings for Redux",
"source": "src/index.js",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.m.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "microbundle",
"start": "microbundle watch",
"lint": "eslint --config ./.eslintrc src",
"flow": "flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teamleadercrm/ddd-action-string.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/teamleadercrm/ddd-action-string/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/teamleadercrm/ddd-action-string#readme",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.4",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.19.1",
"eslint-config-import": "^0.13.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"flow-bin": "^0.72.0",
"microbundle": "^0.4.4",
"prettier": "^1.12.1",
"regenerator-runtime": "^0.11.1"
}
}