-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.56 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
{
"name": "most-static-land",
"description": "Static Land Stream type for Most",
"version": "1.0.0",
"author": "Roman Pominov <[email protected]> (github.com/rpominov)",
"bugs": {
"url": "https://github.com/mostjs-community/most-static-land/issues"
},
"devDependencies": {
"@most/eslint-config-most": "^1.0.3",
"assert": "^1.4.1",
"babel-eslint": "^6.1.2",
"buba": "^2.0.2",
"eslint": "^3.3.1",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"istanbul": "^1.1.0-alpha.1",
"jsinspect": "^0.8.0",
"mocha": "^3.0.2",
"most": "^1.0.1",
"rollup": "0.34.10",
"rollup-plugin-buble": "0.13.0",
"uglify-js": "^2.7.3",
"umd-name-transform": "1.0.1"
},
"files": [
"dist/mostStaticLand.js"
],
"homepage": "https://github.com/mostjs-community/most-static-land#readme",
"license": "MIT",
"main": "dist/mostStaticLand.js",
"peerDependencies": {
"most": "^1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mostjs-community/most-static-land.git"
},
"scripts": {
"build": "npm run build-dist && uglifyjs dist/mostStaticLand.js -o dist/mostStaticLand.min.js",
"build-dist": "mkdir -p dist && rollup -c --name 'most-static-land' | umd-name-transform -o dist/mostStaticLand.js",
"lint": "jsinspect src && jsinspect test && eslint src test",
"prepublish": "npm run build",
"preversion": "npm run build",
"test": "npm run lint && npm run unit-test",
"unit-test": "istanbul cover _mocha"
}
}