-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.37 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
{
"name": "style-implant",
"version": "0.3.2",
"description": "Implant style tags where you need them.",
"main": "dist/umd/style-inject.js",
"module": "dist/es/style-inject.js",
"scripts": {
"prepublishOnly": "yarn test",
"pretest": "yarn build",
"build": "rm -rf dist && yarn lint && tsc --module ES2015 --outDir ./dist/es && tsc --module UMD --outDir ./dist/umd",
"test": "ts-mocha tests/**/*.test.ts",
"lint": "eslint \"**/*.ts\""
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ivoilic/style-implant.git"
},
"keywords": [
"style",
"implant",
"styles",
"inject",
"document",
"head",
"css",
"html",
"order"
],
"author": "Ivo Ilic",
"license": "MIT",
"bugs": {
"url": "https://github.com/ivoilic/style-implant/issues"
},
"homepage": "https://github.com/ivoilic/style-implant#readme",
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^8.4.0",
"prettier": "^2.3.2",
"puppeteer": "^10.2.0",
"ts-mocha": "^8.0.0",
"typescript": "^4.3.5"
}
}