This repository was archived by the owner on Jan 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.52 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.52 KB
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
{
"name": "@wildpeaks/store",
"version": "3.1.2",
"description": "Tiny Typescript class to store an immutable State, edited by JSON messages, and emitting JSON props",
"author": "Cecile Muller",
"license": "MIT",
"keywords": [
"wildpeaks",
"typescript",
"actions"
],
"homepage": "https://github.com/wildpeaks/package-store#readme",
"repository": "https://github.com/wildpeaks/package-store",
"bugs": {
"url": "https://github.com/wildpeaks/package-store/issues"
},
"eslintConfig": {
"extends": "@wildpeaks/typescript",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
}
},
"prettier": {
"printWidth": 120,
"tabWidth": 4,
"useTabs": true,
"bracketSpacing": false,
"trailingComma": "none"
},
"main": "src/Store.ts",
"types": "src/Store.ts",
"files": [
"src"
],
"scripts": {
"test": "mocha -r ts-node/register test/*.test.ts"
},
"peerDependencies": {
"typescript": "*"
},
"devDependencies": {
"@types/mocha": "8.2.2",
"@types/node": "14.14.35",
"@types/sinon": "9.0.11",
"@wildpeaks/eslint-config-typescript": "11.2.0",
"@wildpeaks/tsconfig": "4.0.0",
"@wildpeaks/webpack-config-web": "5.16.0",
"eslint": "7.22.0",
"express": "4.17.1",
"mocha": "8.3.2",
"playwright": "1.9.1",
"preact": "10.5.13",
"recursive-readdir": "2.2.2",
"rimraf": "3.0.2",
"sinon": "9.2.4",
"ts-loader": "8.0.18",
"ts-node": "9.1.1",
"typescript": "4.2.3",
"webpack": "4.44.2"
}
}