This repository was archived by the owner on Jun 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.34 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.34 KB
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
{
"name": "react-stamp",
"version": "0.6.0",
"description": "Composables for React.",
"main": "lib",
"jsnext:main": "src",
"files": [
"dist",
"lib",
"src"
],
"scripts": {
"build": "npm run clean && npm run transpile && npm run build-browser",
"build-browser": "webpack && MINIFY=1 webpack -p",
"clean": "rimraf lib",
"lint": "eslint src test",
"prepublish": "npm run test && npm run build",
"test": "npm run lint && babel-node test/index",
"transpile": "babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stampit-org/react-stamp.git"
},
"keywords": [
"composable",
"stamp",
"react",
"mixins"
],
"author": "Tim Routowicz",
"license": "MIT",
"bugs": {
"url": "https://github.com/stampit-org/react-stamp/issues"
},
"homepage": "https://github.com/stampit-org/react-stamp#readme",
"dependencies": {
"lodash": "4.17.1",
"stamp-utils": "1.3.2"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.5.0",
"eslint": "^3.8.1",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"rimraf": "^2.5.2",
"tape": "^4.5.1",
"webpack": "^1.12.14"
}
}