-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.61 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
{
"name": "@cookieshq/with-js",
"version": "1.0.0-6",
"description": "A declarative way to add/remove attributes, classes and styles on HTML elements when JS is loaded.",
"main": "dist/with-js.cjs.js",
"module": "src/index.js",
"browser": "dist/with-js.iife.js",
"unpkg": "dist/with-js.iife.min.js",
"engines": {
"node": ">=10.19.0"
},
"scripts": {
"clean": "rimraf dist",
"lint": "eslint '**/*.js'",
"test": "ava",
"build": "rollup -c",
"postbuild": "terser dist/with-js.iife.js -o dist/with-js.iife.min.js --source-map 'content=inline'",
"prepack": "npm run clean && npm run lint -- --fix && npm run test && npm run build",
"release": "np"
},
"author": "CookiesHQ <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"ava": "^3.3.0",
"babel-eslint": "^10.0.3",
"browser-env": "^3.3.0",
"eslint": "^6.2.1",
"eslint-config-defaults": "^9.0.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"husky": "^3.0.4",
"lint-staged": "^9.2.3",
"np": "^6.1.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.2",
"rollup": "^1.31.1",
"rollup-plugin-babel": "^4.3.3",
"terser": "^4.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/cookieshq/with-js"
},
"contributors": [
"Romaric Pascal <[email protected]> (https://romaricpascal.is)"
],
"publishConfig": {
"access": "public"
}
}