-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2 KB
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
{
"name": "vimtutor",
"version": "0.1.0",
"description": "The browser version of vimtutor.",
"author": "Mark <mark@remarkablemark.org>",
"scripts": {
"build": "node scripts/build",
"clean": "rm -rf build",
"commitmsg": "commitlint -e $GIT_PARAMS",
"deploy": "npm run clean && npm run build && gitploy build gh-pages",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix",
"precommit": "lint-staged",
"release": "standard-version --no-verify",
"start": "node scripts/start"
},
"homepage": "https://remarkablemark.org/vimtutor/",
"repository": {
"type": "git",
"url": "https://github.com/remarkablemark/vimtutor"
},
"bugs": {
"url": "https://github.com/remarkablemark/vimtutor/issues"
},
"keywords": [
"codemirror",
"vim",
"vimtutor"
],
"devDependencies": {
"@commitlint/cli": "6.2.0",
"@commitlint/config-conventional": "6.1.3",
"autoprefixer": "8.5.0",
"babel-core": "6.26.3",
"babel-eslint": "8.2.3",
"babel-loader": "7.1.4",
"babel-preset-env": "1.7.0",
"babel-runtime": "6.26.0",
"case-sensitive-paths-webpack-plugin": "2.1.2",
"chalk": "2.4.1",
"css-loader": "0.28.11",
"dotenv": "5.0.1",
"eslint": "4.19.1",
"eslint-loader": "2.0.0",
"eslint-plugin-babel": "5.1.0",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-prettier": "2.6.0",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.11",
"fs-extra": "6.0.1",
"gitploy": "0.1.0",
"html-webpack-plugin": "3.2.0",
"husky": "0.14.3",
"lint-staged": "7.1.1",
"postcss-flexbugs-fixes": "3.3.1",
"postcss-loader": "2.1.5",
"prettier": "1.12.1",
"raw-loader": "0.5.1",
"react-dev-utils": "5.0.1",
"standard-version": "4.3.0",
"style-loader": "0.21.0",
"sw-precache-webpack-plugin": "0.11.5",
"url-loader": "1.0.1",
"webpack": "3.12.0",
"webpack-dev-server": "2.11.2",
"webpack-manifest-plugin": "2.0.2"
},
"private": true
}