-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.59 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
57
58
59
60
61
62
63
64
65
66
{
"name": "sam-tests",
"version": "0.0.1",
"scripts": {
"env": "env",
"clean": "rimraf dist",
"build:browserify": "mkdirp dist && browserify --debug -t babelify -p [ css-modulesify -o dist/main.css --before colorguard --after postcss-cssnext ]",
"build:dev": "npm run build:browserify -- --entry src/dev.js -o dist/browser.js | garnish",
"build:browser": "npm run build:browserify -- --entry src/browser.js -o dist/browser.js | garnish",
"build:server": "mkdirp dist && babel src -d dist --source-maps inline --ignore *.spec.js,browser.js,dev.js",
"build": "npm run build:browser && npm run build:server",
"test:browser": "browserify src/browser.spec.js --debug -t babelify | tape-run | faucet",
"test:node": "tape -r babel-register src/**/*.spec.js | faucet",
"test": "npm run test:browser && npm run test:node",
"watch:dev": "watch \"npm run build:dev\" src --filter=watch_filter-specs.js",
"watch:test": "watch \"npm run test\" src",
"db:init": "add-cors-to-couchdb",
"webserver": "ws",
"rabbit": "sh ./rabbit-init.sh",
"rabbit:clean": "sh ./rabbit-clean.sh",
"start:dev": "parallelshell \"npm run webserver\" \"live-reload index.html dist/ --port 9091\" \"npm run watch:dev\"",
"start": "parallelshell \"npm run webserver\" \"node dist/server-model.js\" \"node dist/server-state.js\""
},
"author": "Slađan Ristić",
"license": "ISC",
"dependencies": {
"add-cors-to-couchdb": "0.0.6",
"babel-cli": "6.18.0",
"babel-plugin-transform-async-generator-functions": "6.17.0",
"babel-plugin-transform-do-expressions": "6.8.0",
"babel-plugin-transform-function-bind": "6.8.0",
"babel-plugin-transform-object-rest-spread": "6.19.0",
"babel-polyfill": "6.16.0",
"babel-preset-latest": "6.16.0",
"babel-register": "6.18.0",
"babelify": "7.3.0",
"browserify": "13.1.1",
"colorguard": "1.2.0",
"css-modulesify": "0.25.1",
"faucet": "0.0.1",
"fetch-ponyfill": "3.0.2",
"flyd": "0.2.2",
"garnish": "5.2.0",
"hyperscript": "2.0.2",
"jsverify": "0.7.4",
"live-reload": "1.1.0",
"local-web-server": "1.2.6",
"mkdirp": "0.5.1",
"mori": "^0.3.2",
"morphdom": "2.2.1",
"parallelshell": "2.0.0",
"postcss-cssnext": "2.8.0",
"pouchdb": "6.0.7",
"ramda": "0.22.1",
"rimraf": "2.5.4",
"sockjs-client": "1.1.1",
"stompjs": "git://github.com/thoughtwire/stomp-websocket#master",
"stylelint-config-standard": "15.0.0",
"tape": "4.6.3",
"tape-run": "2.1.4",
"trine": "0.1.1",
"unin": "^0.1.0",
"watch": "1.0.1"
},
"devDependencies": {}
}