-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.39 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.39 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
{
"name": "dime-frontend",
"version": "0.1.0",
"devDependencies": {
"browserify-middleware": "^7.0.0",
"expect.js": "^0.3.1",
"full-icu": "^1.0.3",
"grunt": "^1.0.1",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"icu4c-data": "^0.57.2",
"intl": "^1.0.0",
"mithril-query": "1.0.0",
"mocha": "^3.4.0",
"sass": "^0.5.0",
"stylus": "^0.54.5",
"watchify": "^3.2.2"
},
"dependencies": {
"codemirror": "^5.25.0",
"debug": "^2.4.1",
"lodash": "^4.15.0",
"mithril": "^0.2.0",
"mithril-source-hint": "^1.0.0",
"moment": "^2.18.1",
"mousetrap": "^1.5.3",
"mousetrap-pause": "^1.0.0",
"nib": "^1.1.0",
"simple-uuid": "0.0.1",
"translate.js": "0.7.0"
},
"scripts": {
"build:js": "node_modules/.bin/browserify src/app.js > public/app.js",
"build:css": "node_modules/.bin/stylus src/app.styl -m -u nib -o public/dime.css",
"build": "npm run build:js && npm run build:css",
"test": "NODE_ICU_DATA=node_modules/full-icu mocha src/**/*.test.js src/**/**/*.test.js src/**/**/**/*.test.js",
"watch": "npm run watch:js & npm run watch:css",
"watch:js": "node_modules/.bin/watchify src/app.js -o public/app.js --debug --verbose",
"watch:css": "node_modules/.bin/stylus src/app.styl -m -u nib -w -o public/dime.css",
"watch:test": "node_modules/.bin/mocha -w src/**/*.test.js"
}
}