-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2 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
61
62
63
64
65
66
67
{
"name": "namespaced-event-delegation",
"version": "1.0.1",
"description": "Lightweight helper library to handle DOM Events.",
"keywords": [
"Events",
"DOM",
"Delegation, Namespaces"
],
"source": "src/index.ts",
"_main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/jlopinto/ned.git"
},
"scripts": {
"serve": "parcel serve demo/index.html",
"prebuild:website": "rm -rf dist",
"prebuild:ned": "rm -rf lib",
"build:website": "parcel build demo/index.html --no-source-maps --no-content-hash",
"build:ned": "microbundle --no-sourcemap --output lib",
"build": "npm run build:ned && npm run build:website",
"test": "jest",
"lint": "eslint . --ext .ts"
},
"author": "Julien Lopinto",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.12.13",
"@parcel/transformer-sass": "^2.0.0-nightly.620",
"@parcel/transformer-typescript-tsc": "^2.0.0-alpha.3.2",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"autoprefixer": "^10.2.5",
"babel-jest": "^26.6.3",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.7",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"microbundle": "^0.13.0",
"parcel": "^2.0.0-nightly.618",
"parcel-plugin-clean-dist": "0.0.6",
"postcss": "^8.2.7",
"postcss-custom-properties": "^11.0.0",
"postcss-import": "^14.0.0",
"postcss-purgecss": "^2.0.3",
"postcss-url": "^10.1.1",
"prettier": "^2.2.1",
"rollup": "^2.40.0",
"sass": "^1.32.8",
"tailwindcss": "^2.0.3",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3"
},
"babel": {
"presets": [
"@babel/preset-react"
]
}
}