-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 961 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
32
33
34
35
36
{
"name": "limestone-ts",
"version": "0.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "rollup -c",
"test": "rollup -c rollup.test.js && mocha 'build/index.test.js' --no-timeout --exit",
"fmt": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabianriewe/limestone-ts.git"
},
"author": "Fabian Riewe <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/fabianriewe/limestone-ts/issues"
},
"homepage": "https://github.com/fabianriewe/limestone-ts#readme",
"dependencies": {
"ar-gql": "^0.0.3",
"arweave": "^1.10.11"
},
"devDependencies": {
"@rollup/pluginutils": "^4.1.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"mocha": "^8.2.0",
"prettier": "^2.1.2",
"rollup": "^2.32.1",
"rollup-plugin-typescript2": "^0.28.0",
"typescript": "^4.0.5"
}
}