-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
{
"name": "@ficusjs/script",
"version": "2.1.0",
"description": "FicusJS script is a loader for ES modules and ES5 Javascript",
"main": "dist/script.js",
"module": "dist/script.js",
"types": "types/script.d.ts",
"sideEffects": false,
"scripts": {
"build": "rollup -i src/script.js -o dist/script.js -f es -p \"terser={mangle: { keep_fnames: true, toplevel: true, module: true }}\"",
"postbuild": "replace-in-file \"import(r)\" \"import(/* webpackIgnore: true*/r)\" dist/script.js",
"cy:open": "cypress open",
"cy:run": "cypress run",
"dev": "run-p serve open",
"open": "open-cli http://localhost:8080/test/e2e",
"test": "start-server-and-test serve:silent http://localhost:8080 cy:run",
"serve": "http-server",
"serve:silent": "http-server -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ficusjs/ficusjs-script.git"
},
"keywords": [
"ficusjs",
"frontend",
"web-components",
"script-loader"
],
"author": "Matt Levy",
"license": "MIT",
"devDependencies": {
"cypress": "8.6.0",
"http-server": "14.0.0",
"npm-run-all": "4.1.5",
"open-cli": "7.0.1",
"replace-in-file": "6.3.1",
"rollup": "2.58.0",
"rollup-plugin-terser": "7.0.2",
"standard": "16.0.4",
"start-server-and-test": "1.14.0"
},
"exports": {
".": {
"import": "./dist/script.js"
}
}
}