@fedeghe/pangjs 0.0.2 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.coveralls.yml +2 -0
- package/.travis.yml +7 -0
- package/README.md +2 -1
- package/dist/index.js +1 -1
- package/package.json +23 -3
package/.coveralls.yml
ADDED
package/.travis.yml
ADDED
package/README.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
# PANGjs (0.0.
|
|
1
|
+
# PANGjs (0.0.4)
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
5
|
+
[](https://coveralls.io/github/fedeghe/pangjs?branch=main)
|
|
5
6
|
|
|
6
7
|
# Simple asynchronous state manager
|
|
7
8
|
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,16 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fedeghe/pangjs",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"author": "fedeghe <fedeghe@gmail.com>",
|
|
6
|
+
"description": "Lightweight asynchronous state manager",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"asynchronous state manager",
|
|
9
|
+
"async state manager",
|
|
10
|
+
"state manager",
|
|
11
|
+
"async"
|
|
12
|
+
],
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/fedeghe/pangjs.git"
|
|
16
|
+
},
|
|
6
17
|
"license": "MIT",
|
|
7
18
|
"scripts": {
|
|
8
19
|
"build": "malta source/build.json",
|
|
9
20
|
"dev": "malta source/buildev.json",
|
|
10
21
|
"test": "jest --coverage --rootDir=test",
|
|
11
22
|
"watch": "jest --watch --coverage --rootDir=test",
|
|
12
|
-
"cover": "jest --coverage --rootDir=test",
|
|
13
|
-
"coveralls": "jest --coverage --rootDir=test | coveralls"
|
|
23
|
+
"cover": "jest --coverage --rootDir=test --coverageReporters=text",
|
|
24
|
+
"coveralls": "jest --coverage --rootDir=test --coverageReporters=text && cat ./test/coverage/lcov.info | coveralls"
|
|
14
25
|
},
|
|
15
26
|
"devDependencies": {
|
|
16
27
|
"coveralls": "^3.1.1",
|
|
@@ -24,6 +35,15 @@
|
|
|
24
35
|
"malta": "^4.1.41",
|
|
25
36
|
"malta-header-comment": "^1.0.12",
|
|
26
37
|
"malta-js-uglify": "^1.0.13",
|
|
38
|
+
"mocha-lcov-reporter": "^1.3.0",
|
|
27
39
|
"nyc": "^17.1.0"
|
|
40
|
+
},
|
|
41
|
+
"jest": {
|
|
42
|
+
"collectCoverage": true,
|
|
43
|
+
"coverageReporters": [
|
|
44
|
+
"json",
|
|
45
|
+
"lcov",
|
|
46
|
+
"html"
|
|
47
|
+
]
|
|
28
48
|
}
|
|
29
49
|
}
|