-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.22 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
{
"name": "dainte",
"version": "0.1.5",
"main": "dist/dainte.js",
"module": "dist/dainte.es.js",
"repository": "[email protected]:nathancahill/dainte.git",
"author": "Nathan Cahill <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.9",
"babel-jest": "^27.0.6",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"jest": "^27.0.6",
"jest-transform-svelte": "^2.1.1",
"prettier": "^2.3.2"
},
"scripts": {
"build": "rollup -c",
"format": "prettier --write \"**/*.js\" \"**/*.json\"",
"lint": "eslint .",
"prepublishOnly": "yarn run lint",
"preversion": "yarn run test",
"postversion": "git push && git push --tags",
"test": "jest && yarn run lint"
},
"files": [
"dist/**/*"
],
"dependencies": {
"@rollup/plugin-node-resolve": "^13.0.4",
"code-red": "^0.2.1",
"jsdom": "^16.7.0",
"rollup": "^2.55.1",
"rollup-plugin-svelte": "^7.1.0",
"svelte": "^3.0.0"
}
}