-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.75 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
{
"name": "rawcookie",
"version": "1.0.0",
"author": "Lauren Clark [email protected]",
"description": "PECR Cookie plugin for websites",
"main": "rawCookie.js",
"scripts": {
"dev": "NODE_ENV=development npm run clean && parcel public/index.html --out-dir development -p 3000",
"build-js": "NODE_ENV=production parcel build --no-cache --no-source-maps --no-content-hash src/rawCookie.js --out-dir dist --out-file rawCookie.js --public-url ./",
"build-styles": "sass src/styles/main.sass dist/compiled.css --no-source-map --style=compressed",
"update-styles-to-inject": "node build-scripts/bundle-css-into-js.js ./dist/compiled.css ./src/styles/compiledCSS.js",
"bundle-for-prod": "npm run clean && npm run build-styles && npm run update-styles-to-inject && npm run build-js && rm dist/compiled.css",
"clean": "rimraf ./development && rimraf -rf ./.cache && rimraf ./dist"
},
"browserslist": [
"IE 11",
"last 2 versions and > 1%",
"not dead"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.0.0-0",
"@babel/plugin-transform-runtime": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/runtime-corejs2": "^7.10.3",
"autoprefixer": "^9.8.2",
"babel-preset-env": "^1.7.0",
"details-polyfill": "^1.1.0",
"parcel-bundler": "^1.6.1",
"rimraf": "^3.0.2",
"sass": "^1.26.9"
},
"dependencies": {},
"postcss": {
"plugins": {
"autoprefixer": {
"overrideBrowserslist": [
"> 1%",
"last 2 versions",
"ie 11"
]
}
}
}
}