-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.46 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.46 KB
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
{
"name": "elementar",
"version": "0.1.0",
"description": "Elementar HTML",
"main": "./lib/index.js",
"types": "./types/index.d.ts",
"scripts": {
"pretest": "npm run clean && npm run tsc",
"test": "ava --no-cache --verbose ./lib/*.test.js ./lib/**/*.test.js",
"posttest": "npm run clean-test-code",
"tsc": "tsc",
"tscw": "tsc -w",
"preversion": "npm run tsc",
"postversion": "git push --follow-tags",
"prepublish": "npm run tsc && npm run clean-test-code",
"clean": "rm -fr ./lib && rm -fr ./types",
"clean-test-code": "rm -fr ./lib/**/*.test.js && rm -fr ./lib/*.test.js && rm -fr ./types/**/*.test.d.ts && rm -fr ./types/*.test.d.ts",
"build": "npm run tsc && npm run test"
},
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Mitica/elementar.git"
},
"keywords": [
"elementar",
"html",
"simple-html",
"elementary"
],
"author": "Dumitru Cantea",
"license": "ISC",
"bugs": {
"url": "https://github.com/Mitica/elementar/issues"
},
"homepage": "https://github.com/Mitica/elementar",
"dependencies": {
"cheerio": "^1.0.0-rc.2"
},
"devDependencies": {
"@types/cheerio": "^0.22.6",
"@types/node": "^8.x.x",
"ava": "^0.23.0",
"debug": "^3.1.0",
"typescript": "^2.6.1"
}
}