-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.88 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@ski/spy",
"version": "0.1.0",
"description": "Watch changes to existing objects properties, using Proxy and __proto__ modifications",
"type": "module",
"main": "spy.js",
"module": "spy.js",
"types": "spy.ts",
"scripts": {
"build": "run-s clean build:*",
"watch": "run-p \"build:* -- --watch\"",
"clean": "rimraf js .types",
"build:bundle": "rollup -c",
"tsc": "tsc",
"test": "mocha",
"test:watch": "npm test -- --watch",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saviski/ski-spy.git"
},
"keywords": [
"typescrip",
"javascript",
"observables",
"spy",
"proxy",
"watch"
],
"author": "saviski",
"license": "MIT",
"bugs": {
"url": "https://github.com/saviski/ski-spy/issues"
},
"homepage": "https://github.com/saviski/ski-spy#readme",
"dependencies": {
"@ski/streams": "workspace:^0.1.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^9.0.0",
"@testdeck/mocha": "^0.1.2",
"@types/chai": "^4.2.21",
"@types/chai-spies": "^1.0.3",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"chai-spies": "^1.0.0",
"mocha": "^9.0.3",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.52.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.3",
"ts-node": "^10.1.0",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"files": [
".types",
"js",
"src",
"spy.js",
"spy.min.js",
"spy.min.js.map"
],
"prettier": {
"printWidth": 120,
"semi": false,
"tabWidth": 2,
"proseWrap": "never",
"arrowParens": "avoid",
"endOfLine": "auto",
"singleQuote": true
},
"mocha": {
"loader": "ts-node/esm",
"extension": "ts",
"spec": "test/**/*.test.ts"
}
}