-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 936 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 936 Bytes
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
{
"name": "@ipfn-examples/html-parse",
"main": "src/index.js",
"version": "0.0.1",
"website": "https://github.com/ipfn-examples/js-ipfn-html-parse",
"repository": {
"type": "git",
"url": "https://github.com/ipfn-examples/js-ipfn-html-parse"
},
"author": {
"email": "crackcomm@gmail.com",
"name": "Łukasz Kurowski",
"url": "https://github.com/crackcomm"
},
"dependencies": {
"cheerio": "^1.0.0-rc.1"
},
"devDependencies": {
"@types/jest": "^19.2.4",
"jest": "^20.0.4",
"typescript": "next"
},
"scripts": {
"clean": "rm -rf build",
"test": "npm run build:tests && ./node_modules/.bin/jest",
"build:tests": "npm run clean && ./node_modules/.bin/tsc",
"build": "npm run clean && ./node_modules/.bin/tsc && cp README.md build/ && cp package.json build/ && rm -rf build/tests"
}
}