-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.73 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
{
"name": "most-file-reader",
"description": "FileReader for most",
"version": "1.0.0",
"author": "David Chase <[email protected]> (github.com/davidchase)",
"bugs": {
"url": "https://github.com/mostjs/most-file-reader/issues"
},
"dependencies": {
"@most/sample": "1.0.0"
},
"devDependencies": {
"@most/eslint-config-most": "^1.0.2",
"assert": "^1.4.0",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-es2015-modules-umd": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"isparta": "^4.0.0",
"jsinspect": "^0.8.0",
"mocha": "^2.5.3",
"most": "^0.19.3",
"rollup": "^0.26.3",
"uglify-js": "^2.6.1"
},
"files": [
"dist/most-file-reader.js"
],
"homepage": "https://github.com/mostjs/most-file-reader#readme",
"license": "MIT",
"main": "dist/most-file-reader.js",
"peerDependencies": {
"most": "^0.19.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mostjs/most-file-reader.git"
},
"scripts": {
"build": "npm run build-dist && uglifyjs dist/most-file-reader.js -o dist/most-file-reader.min.js",
"build-dist": "mkdir -p dist && rollup src/index.js | babel --presets es2015 --plugins transform-es2015-modules-umd --module-id '@most/most-file-reader' -o dist/most-file-reader.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": "babel-node ./node_modules/.bin/isparta cover _mocha"
}
}