-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.84 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "remold",
"version": "1.2.1",
"description": "Extended object for React applications",
"module": "./lib/Remold.js",
"main": "./lib/Remold.js",
"minified:main": "./lib/Remold.min.js",
"scripts": {
"prepublish": "npm-run-all test build",
"clean": "rimraf lib/",
"build": "npm-run-all --silent clean copy uglify size",
"copy": "mkdir -p ./lib && cp Remold.js ./lib/Remold.js",
"uglify": "uglifyjs lib/Remold.js -mc --source-map -o lib/Remold.min.js",
"test": "jest --coverage",
"size": "size-limit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Telichkin/remold.git"
},
"keywords": [
"react"
],
"author": "Roman Telichkin <[email protected]> ",
"license": "MIT",
"bugs": {
"url": "https://github.com/Telichkin/remold/issues"
},
"homepage": "https://github.com/Telichkin/remold#readme",
"files": [
"lib"
],
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
"@babel/plugin-proposal-class-properties"
]
},
"size-limit": [
{
"path": "lib/Remold.js",
"limit": "1 KB"
}
],
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"jest": "^23.6.0",
"npm-run-all": "^4.0.0",
"react-dom": "^16.5.2",
"rimraf": "^2.6.2",
"size-limit": "^0.20.0",
"uglify-js": "^3.4.9",
"react": "^16.5.2"
},
"peerDependencies": {
"react": ">=15.0.0"
}
}