-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.78 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.78 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
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": "plasmatic",
"version": "0.0.8",
"description": "Web framework for polymorphic applications",
"main": "build/index.js",
"dependencies": {},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-plugin-module-alias": "^1.6.0",
"babel-plugin-remove-comments": "^2.0.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-preset-babili": "^0.0.8",
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"browserify-istanbul": "^2.0.0",
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.4.0",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-flowtype": "^2.25.0",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-promise": "^3.3.1",
"eslint-plugin-react": "^6.5.0",
"flow-bin": "^0.34.0",
"gulp": "https://github.com/gulpjs/gulp#4.0",
"gulp-babel": "^6.1.2",
"gulp-concat": "^2.6.0",
"gulp-coveralls": "^0.1.4",
"gulp-eslint": "^3.0.1",
"gulp-flowtype": "^1.0.0",
"gulp-jsdoc3": "^1.0.1",
"gulp-replace": "^0.5.4",
"gulp-rimraf": "^0.2.1",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"husky": "^0.11.9",
"isparta": "^4.0.0",
"istanbul": "https://github.com/gotwarlost/istanbul.git#source-map",
"karma": "^1.3.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-browserify": "^5.1.0",
"karma-chai": "^0.1.0",
"karma-coverage": "https://github.com/douglasduteil/karma-coverage#next",
"karma-env-preprocessor": "^0.1.1",
"karma-mocha": "^1.2.0",
"karma-mocha-reporter": "^2.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"mocha": "^3.1.2",
"path": "^0.12.7",
"phantomjs-prebuilt": "^2.1.13",
"proxyquire": "^1.7.10",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"watchify": "^3.7.0",
"yarn": "^0.16.1"
},
"scripts": {
"codeclimate": "codeclimate-test-reporter < coverage/lcov.info",
"prepush": "gulp --env=build eslint && gulp --env=build flow && gulp --env=build karma",
"prepublish": "gulp --env=build eslint && gulp --env=build flow && gulp --env=build karma"
},
"repository": {
"type": "git",
"url": "https://github.com/plasmaticjs/plasmatic.git"
},
"keywords": [
"plasmatic",
"jsx",
"polymorphic",
"framework"
],
"author": "Milos Mosovsky <milos.mosovsky@gmail.com>",
"license": "MIT",
"files": {
"tests": [
"./test/**/*.spec.js"
],
"sourceFiles": [
"./src/**/*.js"
],
"sources": [
"./src/**/*.js",
"!./test/**/*.spec.jss"
],
"es2015": "./es2015",
"docsSources": [
"./es2015/**/*.js",
"./README.md"
],
"build": "./build",
"docs": "./api-docs"
}
}