This repository has been archived by the owner on Aug 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.72 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
49
50
51
52
53
{
"name": "ampli",
"version": "0.12.2",
"description": "HTML to AMP converter",
"main": "dist/index.js",
"repository": "[email protected]:knamp/ampli.git",
"author": "Hans Christian Reinl <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"start": "concurrently 'yarn serve' 'yarn ts:watch'",
"serve": "http-server dist/__tests__/",
"ts:test": "jest",
"ts:test:watch": "yarn test --watch",
"ts:lint": "tslint -c tslint.json '**/*.ts'",
"ts:build": "rm -rf dist/ && tsc -p tsconfig.json",
"ts:watch": "yarn ts:build --watch && yarn copy:boilerplate",
"test": "yarn ts:test",
"copy:boilerplate": "cp -r ./boilerplate dist/",
"copy:teststyles": "cp ./__tests__/data/styles.css dist/__tests__/",
"compile": "yarn copy:teststyles && node dist/__tests__/index.js",
"codecov": "codecov",
"coverage": "yarn ts:test --coverage && yarn codecov",
"lint": "yarn ts:lint",
"build": "yarn ts:build && yarn copy:boilerplate",
"ci": "yarn lint && yarn ts:test && yarn build",
"prepublishOnly": "yarn lint && yarn build"
},
"dependencies": {
"clean-css": "^4.1.11",
"css": "^2.2.1",
"html-minifier": "^3.5.12",
"is-absolute-url": "^2.1.0",
"jsdom": "^13.2.0",
"request": "^2.85.0",
"request-image-size": "^2.1.0",
"request-promise-native": "^1.0.5",
"static-styles": "^0.3.1"
},
"devDependencies": {
"@types/es6-promise": "^3.3.0",
"@types/jest": "^24.0.6",
"@types/node": "^11.9.4",
"codecov": "^3.0.0",
"concurrently": "^4.1.0",
"http-server": "^0.11.1",
"jest": "^24.1.0",
"ts-jest": "^24.0.0",
"tslint": "^5.9.1",
"tslint-config-micro-tools": "^0.1.0",
"typescript": "^3.3.3"
}
}