forked from guardian/prosemirror-noting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.1 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
{
"name": "@guardian/prosemirror-noting",
"version": "3.1.6",
"description": "A plugin to allow noting in prosemirror",
"main": "dist/noting.js",
"types": "dist/noting.d.ts",
"license": "MIT",
"author": {
"name": "Richard Beddington",
"email": "[email protected]"
},
"scripts": {
"test": "NODE_ENV=test jest test 'test/*.spec.js'",
"pages": "npm run build && http-server ./pages/dist",
"prepublishOnly": "yarn build",
"build": "tsc && rollup -c",
"watch": "rollup -c -w",
"lint": "eslint \"src/js/**\"",
"format": "prettier --write '.'",
"publish-pages": "git subtree push --prefix pages/dist origin gh-pages"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@types/prosemirror-model": "^1.7.2",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"babel-jest": "^25.4.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"http-server": "^0.12.1",
"jest": "^25.4.0",
"prettier": "^2.0.5",
"prosemirror-example-setup": "^1.0.1",
"prosemirror-history": "^1.0.0",
"prosemirror-keymap": "^1.0.0",
"prosemirror-menu": "^1.0.1",
"prosemirror-model": "^1.9.1",
"prosemirror-schema-basic": "^1.0.0",
"prosemirror-test-builder": "^1.0.0",
"rollup": "^2.7.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-dts": "^1.4.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-scss": "^2.4.0",
"typescript": "^3.8.3"
},
"dependencies": {
"prosemirror-state": "^1.3.3",
"prosemirror-view": "^1.14.7",
"uuid": "^3.1.0"
},
"jest": {
"testURL": "http://localhost/",
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/test/mocks/style.js"
}
}
}