-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.2 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
{
"name": "component-engine",
"version": "0.1.0",
"private": true,
"description": "WordPress page component engine",
"main": "build/index.js",
"scripts": {
"start": "npm run build && npm run watch",
"test": "NODE_ENV=development mocha --compilers js:babel-register test",
"build:lib": "NODE_ENV=development babel --out-dir build src",
"build:app": "NODE_ENV=development webpack",
"build": "npm run build:lib && npm run build:app && npm run copy",
"watch": "onchange '**/*.js' -e 'build/**/*.js' -- npm run build",
"test:watch": "onchange '**/*.js' -e 'build/**/*.js' -- npm run test",
"copy": "copytotheplace *.php build themes"
},
"keywords": [
"wordpress",
"themes",
"contentblocks",
"react"
],
"author": "Automattic",
"license": "GPL-2.0+",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-plugin-lodash": "^3.2.10",
"babel-preset-react-app": "^1.0.0",
"babel-register": "^6.18.0",
"babel-root-import": "^4.1.4",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"classnames": "^2.2.5",
"copytotheplace": "^0.1.1",
"css": "^2.2.1",
"enzyme": "^2.6.0",
"es6-promise": "^4.0.5",
"eslint": "^3.10.2",
"eslint-config-wpcalypso": "^0.6.0",
"eslint-plugin-wpcalypso": "^3.0.2",
"lodash": "^4.17.2",
"mocha": "^3.2.0",
"onchange": "^3.0.2",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"shortid": "^2.2.6",
"traverse": "^0.6.6",
"webpack": "^1.13.3",
"whatwg-fetch": "^2.0.1"
},
"babel": {
"plugins": [
"babel-root-import",
"lodash"
],
"presets": [
"react-app"
]
},
"eslintConfig": {
"extends": "wpcalypso/react",
"rules": {
"wpcalypso/jsx-classname-namespace": 0,
"max-len": 0
},
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Automattic/component-engine.git"
},
"bugs": {
"url": "https://github.com/Automattic/component-engine/issues"
},
"homepage": "https://github.com/Automattic/component-engine#readme"
}