-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
61 lines (61 loc) · 1.54 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
{
"name": "react-lite",
"version": "0.15.40",
"description": "an implementation of React that optimizes for small script size",
"main": "dist/react-lite.common.js",
"jsnext:main": "src/index.js",
"scripts": {
"test": "jest",
"build:addons": "babel ./addons --out-dir ./lib",
"build": "node build.js && npm run build:addons",
"prepublish": "npm test && npm run build"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/Lucifier129/react-lite.git"
},
"jest": {
"scriptPreprocessor": "<rootDir>/jest/preprocessor.js",
"persistModuleRegistryBetweenSpecs": true,
"unmockedModulePathPatterns": [
""
]
},
"keywords": [
"react",
"lite",
"react-lite",
"component",
"virtual-dom"
],
"author": "Jade Gu <guyingjie129@163.com> (https://github.com/Lucifier129)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lucifier129/react-lite/issues"
},
"homepage": "https://github.com/Lucifier129/react-lite",
"devDependencies": {
"babel": "^5.8.35",
"babel-core": "^5.8.25",
"babel-jest": "^5.3.0",
"babel-loader": "^5.3.2",
"babel-runtime": "^5.8.25",
"jest-cli": "^0.8.1",
"jest-webpack-alias": "^2.0.0",
"rollup": "^0.21.0",
"rollup-plugin-babel": "^1.0.0",
"rollup-plugin-replace": "^1.1.0",
"uglify-js": "^2.6.1",
"webpack": "^1.12.2"
},
"npmName": "react-lite",
"npmFileMap": [{
"basePath": "/dist/",
"files": [
"*.js"
]
}]
}