-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.75 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/sample",
"version": "1.1.0",
"description": "@most/sample",
"main": "dist/sample.js",
"typings": "type-definitions/index.d.ts",
"files": [
"dist/sample.js",
"type-definitions/index.d.ts"
],
"scripts": {
"build-dist": "mkdir -p dist && rollup src/index.js | babel --presets es2015 --plugins transform-es2015-modules-umd --module-id '@most/sample' -o dist/sample.js",
"build": "npm run build-dist && uglifyjs dist/sample.js -o dist/sample.min.js",
"prepublish": "npm run build",
"preversion": "npm run build",
"unit-test": "babel-node ./node_modules/.bin/isparta cover _mocha",
"lint": "jsinspect src && jsinspect test/index-test.js && eslint src test",
"test": "npm run lint && npm run unit-test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mostjs/sample.git"
},
"author": "Tylor Steinberger <[email protected]> (github.com/TylorS)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mostjs/sample/issues"
},
"homepage": "https://github.com/mostjs/sample#readme",
"devDependencies": {
"@most/eslint-config-most": "^1.0.2",
"assert": "^1.3.0",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.2",
"babel-plugin-transform-es2015-modules-umd": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"eslint": "^2.7.0",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"isparta": "^4.0.0",
"jsinspect": "^0.8.0",
"mocha": "^2.4.5",
"most": "^1.0.0",
"rollup": "^0.25.8",
"sinon": "^1.17.3",
"uglify-js": "^2.6.2"
},
"peerDependencies": {
"most": "^1.0.0"
},
"dependencies": {
"@most/prelude": "^1.2.0"
}
}