-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 915 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
{
"name": "@slashstar/cantrips",
"version": "0.1.0",
"author": "Martin MG Jacobsen <[email protected]>",
"description": "Small utility library written as an opportunity to get acquainted with TypeScript",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"lint": "tslint --project tsconfig.json"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mmgj/cantrips.git"
},
"bugs": {
"url": "https://github.com/mmgj/cantrips/issues"
},
"devDependencies": {
"eslint": "^7.13.0",
"eslint-plugin-react": "^7.21.5",
"rollup": "^1.8.0",
"rollup-plugin-typescript2": "^0.20.1",
"tslint": "^5.15.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.4.1"
},
"dependencies": {}
}