-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 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
{
"name": "@articulate/sox",
"version": "1.1.0",
"description": "Our super-special sockets stuff",
"browser": "dist/index.js",
"main": "server/index.js",
"repository": "[email protected]:articulate/sox.git",
"author": "articulate",
"license": "MIT",
"nyc": {
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100
},
"scripts": {
"build": "buble -i client -o dist",
"clean": "rm -rf dist/* && mkdir -p dist",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint client server test",
"postversion": "git push --tags origin master",
"prebuild": "yarn run clean",
"prepack": "yarn run build",
"pretest": "yarn run build",
"preversion": "git checkout master && yarn run build",
"test": "mocha test --reporter=dot",
"test:ci": "yarn run lint && yarn run test:coverage && yarn run coverage",
"test:coverage": "nyc yarn run test"
},
"dependencies": {
"@articulate/ducks": "^0.1.0",
"@articulate/funky": "^2.0.0",
"boom": "^7.2.0",
"crocks": "^0.10.1",
"cuid": "^2.1.1",
"ramda": "^0.25.0",
"socket.io-client": "^4.5.2"
},
"devDependencies": {
"@articulate/spy": "^0.0.1",
"@changesets/cli": "^2.27.9",
"buble": "^0.18.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.11.0",
"joi": "^13.3.0",
"mocha": "^4.0.1",
"nyc": "^11.3.0",
"prop-factory": "^1.0.0"
}
}