-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.11 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
{
"name": "stimo",
"version": "1.0.1",
"description": "simple typed immutable objects for typescript, with full typing support and efficient clones",
"main": "./dist/stimo.js",
"types": "./dist/stimo.d.ts",
"scripts": {
"test": "mocha test --compilers ts:ts-node/register --recursive",
"test:watch": "npm run test -- --watch",
"dist": "tsc --outDir dist -d ./src/stimo.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vanmeegen/stimo.git"
},
"maintainers": [
{
"name": "marcovanmeegen",
"email": "[email protected]"
}
],
"keywords": [
"typescript",
"immutable",
"record"
],
"author": "Marco van Meegen <[email protected]> (http://www.mvmsoft.de)",
"license": "MIT",
"bugs": {
"url": "https://github.com/vanmeegen/stimo/issues"
},
"homepage": "https://github.com/vanmeegen/stimo#readme",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^5.0.0",
"chai": "^4.1.2",
"immutable": "^3.8.2",
"mocha": "^5.1.1",
"ts-node": "^6.0.2",
"typescript": "^2.8.3"
}
}