-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 897 Bytes
/
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
{
"name": "shallow-equal-explain",
"main": "./target/src/index.js",
"typings": "./target/src/index.d.ts",
"version": "0.0.4",
"scripts": {
"lint": "tslint --project ./tsconfig.json",
"compile": "tsc",
"cleanTarget": "rm -rf ./target/*",
"prepublishOnly": "npm run cleanTarget && npm run compile && npm run lint",
"start": "npm run compile && npm run lint && node ./target/src/index.js",
"tests": "npm run compile && npm run lint && node ./target/tests/index.js",
"format": "prettier --write './**/*.{ts,js,json,md}'"
},
"files": [
"target"
],
"dependencies": {
"ramda": "^0.25.0",
"unionize": "^1.0.0"
},
"devDependencies": {
"prettier": "^1.10.2",
"tslint": "^5.9.1",
"tslint-language-service": "^0.9.8",
"typescript": "^2.6.2",
"@types/ramda": "^0.25.16",
"@types/tape": "^4.2.31",
"tape": "^4.8.0"
}
}