-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "salvage",
"version": "0.2.3",
"description": "A library for updating only those values that have changed in a Javascript value",
"main": "lib/src/index.js",
"typings": "lib/src/index.d.ts",
"directories": {
"test": "test"
},
"dependencies": {
},
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^1.0.0-alpha.2",
"lodash": "^4.13.1",
"mocha": "^2.5.2",
"remap-istanbul": "^0.6.4",
"ts-node": "^0.7.3",
"typescript": "^1.8.10"
},
"scripts": {
"cover": "tsc && node ./node_modules/istanbul/lib/cli.js cover -x '**/logger.*' _mocha lib/test/**/*.js && ./node_modules/.bin/remap-istanbul -i ./coverage/coverage.raw.json -o ./coverage/html-report -t html",
"test": "mocha",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xogeny/salvage.git"
},
"keywords": [
"React",
"identity"
],
"author": "Michael M. Tiller",
"license": "MIT",
"bugs": {
"url": "https://github.com/xogeny/salvage/issues"
},
"homepage": "https://github.com/xogeny/salvage#readme"
}