forked from guardian/prosemirror-noting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.7 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
{
"name": "@guardian/prosemirror-noting",
"version": "3.1.1",
"description": "A plugin to allow noting in prosemirror",
"main": "dist/noting.js",
"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": "rollup -c",
"watch": "rollup -c -w",
"format": "prettier --write './src/**/*.js'",
"publish-pages": "git subtree push --prefix pages/dist origin gh-pages"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.35",
"@babel/preset-env": "^7.0.0-beta.35",
"babel-core": "^7.0.0-0",
"babel-jest": "^22.0.1",
"eslint": "^4.13.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.4.0",
"http-server": "^0.10.0",
"jest": "^22.0.1",
"prettier": "^1.9.2",
"prosemirror-example-setup": "^1.0.1",
"prosemirror-history": "^1.0.0",
"prosemirror-keymap": "^1.0.0",
"prosemirror-menu": "^1.0.1",
"prosemirror-model": "^1.0.1",
"prosemirror-schema-basic": "^1.0.0",
"prosemirror-test-builder": "^1.0.0",
"rollup": "^0.52.3",
"rollup-plugin-babel": "^4.0.0-beta.4",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-scss": "^0.4.0"
},
"dependencies": {
"prosemirror-state": "^1.0.0",
"prosemirror-view": "^1.2.0",
"uuid": "^3.1.0"
},
"jest": {
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/test/mocks/style.js"
}
}
}