-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.02 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
{
"name": "@sidp/iframes",
"version": "0.1.3",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Peter Simonsson <peter@simonsson.com>",
"repository": "git@github.com:sidp/iframes.git",
"license": "MIT",
"scripts": {
"build": "rimraf lib && tsc",
"dev:build": "rollup -c",
"dev:serve-origin1": "http-server ./example -s -p 4020",
"dev:serve-origin2": "http-server ./example -s -p 4020 -a foreign.test",
"dev:serve-build": "http-server ./build -s -p 4021",
"dev:watch": "yarn run dev:build --watch",
"dev": "concurrently --kill-others-on-fail 'yarn run dev:watch' 'yarn run dev:serve-origin1' 'yarn run dev:serve-origin2' 'yarn run dev:serve-build'",
"prepublishOnly": "yarn run build"
},
"dependencies": {},
"devDependencies": {
"concurrently": "^3.5.1",
"http-server": "^0.11.1",
"prettier": "^1.10.2",
"rimraf": "^2.6.2",
"rollup": "^0.56.5",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.2.0",
"rollup-plugin-typescript": "^0.8.1",
"typescript": "^2.7.2"
}
}