-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
49 lines (44 loc) · 1.23 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
{
"name": "immupdate",
"version": "1.3.1",
"description": "Immutable update for Objects and Arrays",
"license": "MIT",
"main": "commonjs/immupdate",
"module": "es/immupdate",
"typings": "commonjs/immupdate.d.ts",
"devDependencies": {
"typescript": "3.7.4",
"mocha": "2.2.5",
"expect": "1.8.0",
"chalk": "1.1.1",
"space-lift": "0.8.2"
},
"scripts": {
"build": "npm run build-commonjs && npm run build-es",
"build-es": "tsc immupdate.ts --outDir es --strict --noUnusedParameters --declaration --lib dom,es5,es6 --module es6",
"build-commonjs": "tsc immupdate.ts --outDir commonjs --strict --noUnusedParameters --declaration --lib dom,es5,es6",
"pretest": "npm run build && tsc test/mocha.d.ts test/global.d.ts test/test.ts --strict --lib dom,es5,es6",
"test": "mocha test/test.js && node test/testCompilationErrors.js"
},
"files": [
"commonjs",
"es"
],
"repository": {
"type": "git",
"url": "git://github.com/AlexGalays/immupdate.git"
},
"keywords": [
"immutable",
"update",
"clone",
"collection",
"Array",
"Object",
"model",
"data",
"typescript"
],
"author": "AlexGalays",
"homepage": "https://github.com/AlexGalays/immupdate"
}