-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.7 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@notestream/dev-utils",
"description": "Dev utils to be shared across NoteStream packages",
"version": "0.1.0",
"author": {
"name": "Tom French"
},
"bugs": {
"url": "https://github.com/TomAFrench/NoteStream/issues"
},
"dependencies": {
"bignumber.js": "^9.0.0",
"ether-time-traveler": "^1.0.0",
"ethers": "^4.0.47",
"ganache-time-traveler": "^1.0.14",
"moment": "^2.25.3"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.5.5",
"@babel/runtime": "^7.7.6",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"lint-staged": "^10.2.2",
"mocha": "^6.2.0",
"shx": "^0.3.2"
},
"files": [
"/lib"
],
"homepage": "https://github.com/TomAFrench/NoteStream/tree/develop/packages/dev-utils#readme",
"license": "LGPL-3.0",
"main": "./lib",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/TomAFrench/NoteStream.git",
"directory": "packages/dev-utils"
},
"scripts": {
"precommit": "lint-staged",
"commit": "git-cz",
"build": "yarn clean && babel --copy-files --out-dir ./lib --root-mode upward ./src",
"clean": "shx rm -rf ./lib",
"has:changed": "bash ../monorepo-scripts/ci/hasChanged.sh dev-utils",
"lint": "eslint --ignore-path ../../.eslintignore .",
"watch": "yarn build --watch"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}