-
Notifications
You must be signed in to change notification settings - Fork 252
/
package.json
55 lines (55 loc) · 1.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
{
"name": "rythm.js",
"version": "2.2.6",
"description": "",
"main": "rythm.js",
"files": [
"rythm.js",
"rythm.min.js"
],
"scripts": {
"start": "concurrently --kill-others \"watch-http-server -o .\" \"npm run build -- -w\"",
"serve": "gulp serve",
"prepublish": "npm run build",
"test": "echo \"No test specified\" && exit 0",
"build": "node build.js",
"prettier": "prettier src/**/*.js --write --config .prettierrc",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/Okazari/Rythm.js"
},
"author": "Benjamin Plouzennec <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"watch-http-server": "^0.7.6"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.23.0",
"babelrc-rollup": "^3.0.0",
"command-line-args": "^4.0.7",
"concurrently": "^3.3.0",
"eslint": "^3.15.0",
"gulp": "^3.9.1",
"gulp-webserver": "^0.9.1",
"husky": "^0.14.3",
"lint-staged": "^4.3.0",
"prettier": "^1.7.4",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^3.2.2",
"uglify-es": "^3.0.28"
},
"lint-staged": {
"*.{js,css}": [
"prettier --write",
"git add"
]
}
}