-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.33 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
{
"name": "@eoussama/temmejs",
"version": "1.0.5",
"description": "Temme (or Emmet in reverse) is to javascript what Emmet is to HTML and CSS, with no doubts, Emmet saved us from the headache of working with HTML and CSS, and now, Temme is doing Javascript the same favour too.",
"main": "src/temme.ts",
"directories": {
"doc": "docs",
"example": "examples",
"test": "tests"
},
"scripts": {
"clean": "rm -rf dist && rm -rf build",
"build": "npx tsc --outDir build --module commonjs",
"bundle": "npx webpack",
"docs": "rm -rf \"docs/assets/js/lib\" && mkdir \"docs/assets/js/lib\" && cp \"./dist/temme.js\" \"./docs/assets/js/lib/\"",
"prod": "npm run clean && npm run build && npm run bundle && npm run docs",
"test": "npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EOussama/temmejs.git"
},
"keywords": [
"typescript",
"javascript",
"javascript-library",
"dom",
"emmet"
],
"author": "EOussama",
"license": "MIT",
"bugs": {
"url": "https://github.com/EOussama/temmejs/issues"
},
"homepage": "https://github.com/EOussama/temmejs#readme",
"publishConfig": { "registry": "https://npm.pkg.github.com/" },
"devDependencies": {
"@types/node": "^14.11.8",
"jest": "^29.7.0",
"ts-loader": "^5.3.1",
"typescript": "^3.2.2",
"webpack": "^5.94.0",
"webpack-cli": "^3.1.2"
}
}