-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.07 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
{
"name": "@openstax/highlighter",
"version": "1.13.0",
"main": "dist/index.js",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"current": "node -e \"console.log(require('./package.json').version)\"",
"clean": "rm -rf dist",
"build": "tsc --outDir dist",
"build:clean": "npm-run-all clean build",
"deploy:examples": "gh-pages -d examples",
"lint": "npm-run-all lint:js lint:ts lint:ts-types",
"lint:js": "eslint src/**/*.js",
"lint:ts": "tslint -p ./tsconfig.json",
"lint:ts-types": "tsc",
"test": "jest --coverage --verbose --maxWorkers=2",
"watch": "tsc --noEmit --watch",
"watch:test": "jest --watchAll"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-typescript": "^7.1.0",
"@types/jest": "^23.3.7",
"@types/lodash": "<4.14.180",
"@types/uuid": "^3.4.6",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"eslint": "^5.6.1",
"eslint-loader": "^2.1.1",
"gh-pages": "^2.0.1",
"jest": "^23.6.0",
"npm-run-all": "^4.1.3",
"ts-loader": "^5.2.1",
"tslint": "^5.11.0",
"tslint-loader": "^3.6.0",
"typescript": "~3.5",
"typescript-babel-jest": "^1.0.5"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(ts|js)$",
"transform": {
"^.+\\.ts$": "typescript-babel-jest",
"^.+\\.js$": "babel-jest"
},
"moduleDirectories": [
"node_modules"
],
"testPathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/node_modules/"
],
"setupFiles": [
"./test/helpers/Range",
"./test/helpers/Selection"
]
},
"dependencies": {
"@openstax/highlights-client": "0.2.3",
"change-case": "^4.0.0",
"lodash": "^4.17.21",
"serialize-selection": "^1.1.1",
"uuid": "^3.3.3"
}
}