-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1022 Bytes
/
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
{
"name": "skeletonify",
"version": "1.0.0",
"description": "",
"main": "dist/skeletonify.js",
"types": "dist/skeletonify.d.ts",
"scripts": {
"prebuild": "rimraf dist && rimraf build",
"build": "tsc --module commonjs && rollup -c rollup.config.ts",
"postbuild": "npm run test && npm run lint && node definition-bundle.js",
"test": "jest",
"lint": "tslint -p .",
"prepare": "npm run build"
},
"author": "migiside",
"homepage": "https://github.com/migiside/Skeletonify",
"license": "MIT",
"dependencies": {
"js-beautify": "^1.8.6",
"jsdom": "^12.1.0"
},
"devDependencies": {
"@types/jest": "^23.3.2",
"@types/js-beautify": "^1.8.0",
"@types/jsdom": "^11.12.0",
"dts-bundle": "^0.7.3",
"glob": "^7.1.3",
"jest": "^23.6.0",
"rimraf": "^2.6.2",
"rollup": "^0.66.6",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.17.1",
"ts-jest": "^23.10.3",
"tslint": "^5.11.0",
"typescript": "^3.1.1"
}
}