This repository has been archived by the owner on Jan 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
85 lines (85 loc) · 2.69 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
{
"name": "webmaker-core",
"version": "1.6.1",
"description": "Web core for Webmaker App",
"scripts": {
"start": "npm run build && npm-run-all --parallel webserver watch:**",
"config": "node ./npm_tasks/build-config.js > src/config.js",
"build": "npm-run-all build:**",
"build:clean": "rimraf dest/ && mkdirp dest/",
"build:static": "ncp src/static/ dest/",
"build:l10njson": "yamlconvert intl-config.json",
"build:js": "npm run config && webpack",
"build:css": "npm run watch:css -- --no-watch",
"build:html": "node ./npm_tasks/bin/build-html",
"test": "npm run config && npm-run-all test:**",
"test:mocha": "mocha -R spec --compilers js:babel/register \"./{src,npm_tasks}/**/*.test.js\"",
"test:lint": "eslint --ext .js,.jsx src/",
"watch:static": "watch \"npm run build:static\" src/static",
"watch:js": "npm run build:js -- -d --watch",
"watch:css": "autoless --source-map --autoprefix \"last 2 versions, android >= 4.2\" src dest",
"watch:html": "watch \"npm run build:html\" src/html",
"webserver": "live-server ./dest --port=4242"
},
"repository": {
"type": "git",
"url": "https://github.com/mozilla/webmaker-core.git"
},
"author": "",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozilla/webmaker-core/issues"
},
"homepage": "https://github.com/mozilla/webmaker-core",
"engines": {
"node": "^4.1.0",
"npm": "^2.7.4"
},
"devDependencies": {
"autoless": "^0.1.7",
"babel": "^5.3.3",
"babel-core": "^5.8.25",
"babel-loader": "^5.3.2",
"colors": "^1.1.0",
"eslint": "^1.3.1",
"eslint-plugin-react": "^3.3.1",
"fs-extra": "^0.24.0",
"git-rev-sync": "^1.1.0",
"habitat": "^3.1.2",
"intl-locales-supported": "^1.0.0",
"json-loader": "^0.5.1",
"jsx-loader": "^0.13.2",
"live-server": "^0.9.0",
"minimist": "^1.1.1",
"mkdirp": "^0.5.0",
"mocha": "^2.2.1",
"ncp": "^2.0.0",
"npm-run-all": "^1.2.2",
"proxyquire": "^1.4.0",
"rimraf": "^2.3.2",
"should": "^8.0.2",
"tmp": "^0.0.28",
"watch": "^0.16.0",
"webpack": "^1.7.3",
"yaml-intl-xml-json-converter": "0.0.7"
},
"dependencies": {
"classnames": "2.2.1",
"color": "0.10.1",
"intl": "1.0.0",
"lodash.defaults": "3.1.2",
"lru-cache": "2.7.0",
"owasp-password-strength-test": "1.3.0",
"panzoom": "https://github.com/k88hudson/panzoom.git#b3b698d44ed12129c723f76efbd431678a34d96a",
"react": "0.14.0",
"react-addons-linked-state-mixin": "0.14.0",
"react-addons-update": "0.14.0",
"react-dom": "0.14.0",
"react-hammerjs": "0.3.0",
"react-intl": "1.2.0",
"xhr": "2.2.0"
},
"jshintConfig": {
"esnext": true
}
}