-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 901 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 901 Bytes
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
{
"name": "@boulevard/vampire",
"version": "1.0.0-beta.2",
"description": "Shadowless slots.",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"prebuild": "yarn run test && yarn run clean",
"prepublish": "yarn run build",
"test": "jest --config jest.config.json",
"test-debug": "node --inspect-brk $(npm bin)/jest --runInBand --config jest.config.json"
},
"author": "Daniel Nagy <dan@joinboulevard.com>",
"repository": "github:Boulevard/vampire",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/jest": "^24.0.11",
"@webcomponents/custom-elements": "^1.2.4",
"jest": "^24.7.1",
"jest-environment-jsdom-fourteen": "^0.1.0",
"ts-jest": "^24.0.2",
"typescript": "<3.3.0"
}
}