-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
56 lines (56 loc) · 1.57 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
{
"name": "@most/create",
"version": "2.0.1",
"description": "create",
"main": "dist/create.js",
"module": "dist/create.es.js",
"jsnext:main": "dist/create.es.js",
"typings": "type-definitions/index.d.ts",
"files": [
"dist",
"type-definitions/index.d.ts"
],
"scripts": {
"build-dist": "mkdir -p dist && rollup -c",
"build": "npm run build-dist && uglifyjs dist/create.js -o dist/create.min.js",
"prepublish": "npm run build",
"preversion": "npm run build",
"unit-test": "istanbul cover _mocha",
"lint": "jsinspect src && jsinspect test && eslint src test",
"test": "npm run lint && npm run unit-test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mostjs/create.git"
},
"author": "Brian Cavalier <[email protected]> (github.com/briancavalier)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mostjs/create/issues"
},
"homepage": "https://github.com/mostjs/create#readme",
"devDependencies": {
"@most/eslint-config-most": "^1.0.3",
"assert": "^1.4.1",
"babel-eslint": "^6.1.2",
"buba": "^1.0.5",
"eslint": "^3.7.1",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.1",
"istanbul": "^1.1.0-alpha.1",
"jsinspect": "^0.8.0",
"mocha": "^2.5.3",
"most": "^1.0.4",
"rollup": "^0.34.1",
"rollup-plugin-buble": "^0.12.1",
"sinon": "^1.17.6",
"uglify-js": "^2.7.3"
},
"peerDependencies": {
"most": "^1.0.0"
},
"dependencies": {
"@most/multicast": "^1.2.4"
}
}