-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.31 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
{
"private": "true",
"license": "MIT",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@daisy/jest-env-puppeteer": "^1.0.0",
"@daisy/jest-puppeteer": "^1.0.0",
"babel-core": "^6.0.0",
"babel-jest": "^21.2.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"chalk": "^2.3.0",
"cross-spawn": "^5.1.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"glob": "^7.1.2",
"jest": "21.3.0-beta.10",
"lerna": "2.8",
"micromatch": "^3.1.4",
"mkdirp": "^0.5.1",
"rimraf": "^2.6.1",
"snyk": "^1.56.0",
"standard-version": "^4.2.0",
"strip-ansi": "^4.0.0",
"uglify-js": "^3.0.8",
"watch": "^1.0.2"
},
"scripts": {
"ace": "node ./packages/ace-cli/bin/ace.js",
"clean": "rimraf packages/*/lib",
"clean-all": "yarn clean && rimraf packages/*/node_modules && rimraf node_modules",
"prebuild": "yarn run clean",
"build": "node ./scripts/build.js",
"docs": "echo docs script not implemented",
"lint": "echo lint script not implemented",
"postinstall": "yarn build",
"test": "jest",
"watch": "yarn build && node ./scripts/watch.js"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/tests/jest-setup.js",
"testEnvironment": "node"
}
}