-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.79 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
56
57
58
59
60
{
"name": "referentiel",
"version": "2.0.1",
"description": "Convert position relative to a html element.",
"main": "dist/referentiel.umd.js",
"types": "dist/referentiel.d.ts",
"module": "dist/referentiel.js",
"directories": {
"test": "test"
},
"files": [
"dist",
"src"
],
"scripts": {
"prepublish": "npm run test",
"test": "npm run lint && npm run build && ./node_modules/.bin/karma start --single-run",
"start": "npm run build && ./node_modules/.bin/nf start",
"build": "./node_modules/.bin/tsc && ./node_modules/.bin/pug test && ./node_modules/.bin/webpack-cli && ./node_modules/.bin/pug -o dist src",
"lint": "./node_modules/.bin/eslint . --cache --fix"
},
"author": "Luc Boissaye",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ombr/referentiel.git"
},
"bugs": {
"url": "https://github.com/ombr/referentiel/issues"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"foreman": "^3.0.1",
"http-server": "^0.12.3",
"jasmine-core": "^4.4.0",
"jquery": "^3.6.1",
"karma": "^6.4.0",
"karma-chrome-launcher": "^3.1.1",
"karma-cli": "^2.0.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^5.1.0",
"prettier": "2.7.1",
"pug-cli": "^1.0.0-alpha6",
"puppeteer": "^17.1.3",
"reset-css": "^5.0.1",
"ts-loader": "^9.3.1",
"typescript": "^4.8.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {}
}