-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 887 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 887 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
38
39
40
41
42
43
44
{
"name": "adss",
"version": "1.0.5",
"description": "Action->Dispatch->Services->Store flow",
"main": "lib/adss.js",
"module": "es/adss.js",
"files": [
"lib",
"es",
"src"
],
"scripts": {
"build": "rollup -c",
"clean": "rimraf lib es",
"pretest": "npm run build",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:cov": "npm test -- --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simprl/adss.git"
},
"keywords": [
"action",
"dispatch",
"services",
"store",
"flux",
"redux",
"react"
],
"author": "simprl",
"license": "MIT",
"bugs": {
"url": "https://github.com/simprl/adss/issues"
},
"homepage": "https://github.com/simprl/adss#readme",
"devDependencies": {
"jest": "^27.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.56.3"
}
}