-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 976 Bytes
/
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
{
"name": "tiny-observables",
"version": "1.0.0",
"description": "Tiny observable lib",
"scripts": {
"start": "npm run build:dev",
"build:dev": "webpack",
"build:prod": "webpack --env.prod=true",
"build:gzip-size": "npm run build:prod && gzip-size dist/tiny-observables.js"
},
"main": "dist/webpack-numbers.js",
"module": "src/index.js",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"gzip-size-cli": "^2.0.0",
"webpack": "^2.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Alexjajones/tiny-observables.git"
},
"keywords": [
"small",
"observable",
"tiny",
"js",
"javascript"
],
"author": "Alex Jones",
"license": "MIT",
"bugs": {
"url": "https://github.com/Alexjajones/tiny-observables/issues"
},
"homepage": "https://github.com/Alexjajones/tiny-observables#readme"
}