-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.13 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "sullivan",
"version": "1.0.1",
"description": "Tools to quickly build interfaces in JS",
"format": "es6",
"main": "build/index.js",
"browser": "build/global.js",
"global": "build/global.js",
"license": "MIT",
"scripts": {
"test": "./.scripts/test.sh",
"clean": "./.scripts/clean.sh",
"prepublish": "npm run build",
"build": "NODE_ENV=production ./.scripts/build.sh",
"build-umd": "./.scripts/build-umd.sh",
"build-cjs": "./.scripts/build-cjs.sh",
"build-amd": "./.scripts/build-amd.sh",
"build-global": "./.scripts/build-global.sh"
},
"dependencies": {
"lodash.isfunction": "^3.0.7",
"lodash.pickby": "^4.1.0"
},
"devDependencies": {
"browserify": "^12.0.0",
"babelify": "^7.0.0",
"webpack": "^1.12.1",
"regenerator": "^0.8.0",
"babel-cli": "^6.0.0",
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-polyfill": "^6.0.0",
"babel-preset-react": "^6.0.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.0.0",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.0.0",
"babel-plugin-transform-es2015-block-scoping": "^6.0.0",
"babel-plugin-transform-es2015-classes": "^6.0.0",
"babel-plugin-transform-es2015-computed-properties": "^6.0.0",
"babel-plugin-transform-es2015-destructuring": "^6.0.0",
"babel-plugin-transform-es2015-for-of": "^6.0.0",
"babel-plugin-transform-es2015-function-name": "^6.0.0",
"babel-plugin-transform-es2015-literals": "^6.0.0",
"babel-plugin-transform-es2015-object-super": "^6.0.0",
"babel-plugin-transform-es2015-parameters": "^6.0.0",
"babel-plugin-transform-es2015-shorthand-properties": "^6.0.0",
"babel-plugin-transform-es2015-spread": "^6.0.0",
"babel-plugin-transform-es2015-sticky-regex": "^6.0.0",
"babel-plugin-transform-es2015-template-literals": "^6.0.0",
"babel-plugin-transform-es2015-typeof-symbol": "^6.0.0",
"babel-plugin-transform-es2015-unicode-regex": "^6.0.0",
"babel-plugin-transform-regenerator": "^6.0.0",
"babel-plugin-transform-async-to-generator": "^6.0.0",
"babel-plugin-transform-es5-property-mutators": "^6.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.0.0",
"babel-plugin-transform-es2015-modules-amd": "^6.0.0",
"babel-plugin-transform-es2015-modules-systemjs": "^6.0.0",
"babel-plugin-transform-es2015-modules-umd": "^6.0.0",
"babel-plugin-transform-export-extensions": "^6.4.0",
"babel-plugin-transform-object-assign": "^6.3.13",
"babel-plugin-transform-object-rest-spread": "^6.3.13"
},
"jspm": {
"registry": "jspm",
"directories": {
"lib": "src"
}
},
"repository": {
"type": "git",
"url": "https://github.com/adrianleb/sullivan"
},
"bugs": {
"url": "https://github.com/adrianleb/sullivan/issues"
},
"keywords": [
"js",
"css",
"jsx",
"styling",
"react",
"BEM",
"JSS",
"helpers",
"UI"
],
"maintainers": [
{
"name": "adrianleb",
"email": "adrian@adrians.info"
}
],
"author": {
"email": "adrian@adrians.info",
"name": "Adrian le Bas",
"url": "http://adrians.info"
}
}