-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
86 lines (86 loc) · 2.45 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "getsy",
"version": "0.9.2",
"description": "A simple browser/client-side web scraper.",
"keywords": [
"browser",
"client-side",
"web-scraper",
"client",
"web",
"scraper"
],
"browser": "lib/umd/getsy.js",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"jsnext:main": "lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"files": [
"lib",
"src"
],
"scripts": {
"precommit": "yarn run lint && yarn test",
"prepush": "yarn run lint && yarn test",
"start": "NODE_ENV=development rollup --config rollup.config.js -w",
"clean:umd": "rimraf ./lib/umd",
"clean:esm": "rimraf ./lib/esm",
"clean:cjs": "rimraf ./lib/cjs",
"clean:all": "yarn run clean:umd && yarn run clean:esm && yarn run clean:cjs",
"build:umd": "NODE_ENV=production rollup --config rollup.config.js",
"build:esm": "tsc",
"build:cjs": "tsc -m commonjs --outDir lib/cjs",
"build:all": "yarn run build:umd && yarn run build:esm && yarn run build:cjs",
"build": "yarn run clean:all && yarn run build:all",
"lint": "tslint --project ./tsconfig.json --type-check",
"test": "jest",
"prepublish": "yarn run lint && yarn test && yarn run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epiqueras/getsy.git"
},
"author": "epiqueras",
"license": "MIT",
"bugs": {
"url": "https://github.com/epiqueras/getsy/issues"
},
"homepage": "https://github.com/epiqueras/getsy#readme",
"devDependencies": {
"@types/jest": "^19.2.2",
"@types/jquery": "^2.0.41",
"@types/node": "^7.0.13",
"husky": "^0.13.3",
"jest": "^19.0.2",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-livereload": "^0.4.0",
"rollup-plugin-node-builtins": "^2.1.0",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-serve": "^0.3.0",
"rollup-plugin-typescript": "^0.8.1",
"rollup-watch": "^3.2.2",
"ts-jest": "^19.0.10",
"tslint": "<5",
"tslint-microsoft-contrib": "^4.0.1",
"typescript": "^2.2.2",
"xmlhttprequest": "^1.8.0"
},
"dependencies": {
"jquery": "^3.2.1"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}