-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.37 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": "worp",
"version": "1.0.2",
"author": {
"name": "Michał Wrzosek",
"email": "michal@wrzosek.pl",
"url": "https://michal.wrzosek.pl"
},
"homepage": "https://github.com/michal-wrzosek/worp",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"repository": {
"url": "https://github.com/michal-wrzosek/worp",
"type": "git"
},
"license": "MIT",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"chai": "^4.2.0",
"concurrently": "^4.1.0",
"mocha": "^6.1.4",
"prepend-file": "^1.3.1",
"rollup": "^1.0.0",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.20.1",
"source-map-support": "^0.5.12",
"ts-node": "^7.0.1",
"tslib": "^1.9.3",
"typescript": "^3.2.2"
},
"peerDependencies": {},
"scripts": {
"build": "rollup -c",
"build-watch": "rollup -c -w",
"install-all": "npm i && cd example && npm i",
"start-example": "cd example && npm start",
"deploy-example": "cd example && npm run deploy",
"dev": "concurrently --kill-others \"npm run build-watch\" \"npm run start-example\"",
"test": "mocha --recursive -r ts-node/register src/*.spec.ts src/**/*.spec.ts"
},
"files": [
"dist"
]
}