-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "reactive-properties",
"version": "0.1.11",
"description": "Reactive property system.",
"main": "dist/cjs/index.js",
"types": "dist/esm/index.d.ts",
"module": "dist/esm/index.js",
"scripts": {
"build:cjs": "tsc --outDir dist/cjs",
"build:esm": "tsc --outDir dist/esm --module es6",
"build": "rm -rf dist && yarn build:cjs && yarn build:esm",
"test": "mocha -r ts-node/register -r ./test/register.ts \"test/**/*.test.ts\"",
"lint": "tslint -p tsconfig.json \"{src,test}/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"property",
"reactive",
"rx",
"rxjs",
"state",
"mutable",
"callback",
"callbacks"
],
"files": [
"package.json",
"dist",
"src",
"Unlicense",
"README.md"
],
"author": "Dmytro Maretskyi <[email protected]>",
"license": "Unlicense",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.4",
"@types/sinon-chai": "^3.2.3",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"sinon": "^7.4.2",
"sinon-chai": "^3.3.0",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"typescript": "^3.7.5"
}
}