-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "m",
"version": "1.0.0",
"description": "A minimalist, modernist, UI component framework for the web.",
"main": "index.js",
"scripts": {
"test": "mocha test/**/*.js",
"docs": "nodemon --watch docs/server.js docs/server.js",
"watch": "nodemon --watch src -e js --exec rollup -- -c",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "[email protected]:mikesmullin/m-js.git"
},
"keywords": [
"ui",
"component",
"framework"
],
"author": "Mike Smullin",
"license": "MIT",
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"express": "^4.16.3",
"javascript-stringify": "^1.6.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.1",
"rollup": "^0.62.0",
"rollup-plugin-gzip": "^1.4.0",
"rollup-plugin-uglify-es": "0.0.1",
"xml2js": "^0.4.19"
},
"dependencies": {
"debug": "^3.1.0",
"chokidar": "^2.0.4",
"stylus": "^0.54.5",
"socket.io": "^2.1.1"
}
}