generated from basics/blueprint-npm-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.01 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
{
"name": "@js-basics/jsto...",
"version": "0.8.1",
"description": "transpile js to other languages",
"main": "./index.js",
"module": "./build/esm/index.js",
"types": "./index.d.ts",
"directories": {
"build": "build"
},
"scripts": {
"clean": "rimraf lib",
"test": "npm run lint && npm run cover",
"test:prod": "cross-env BABEL_ENV=production npm run test",
"test:watch": "npm test -- --watch",
"cover": "nyc npx mocha --recursive",
"lint": "eslint src",
"build": "cross-env BABEL_ENV=production babel src --out-dir lib && npx rollup --config ./.rolluprc",
"prepare": "npm run clean && npm run test && npm run build",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/basics/jsto....git"
},
"keywords": [
"transpiler",
"types",
"js",
"glsl"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/basics/jsto.../issues"
},
"homepage": "https://github.com/basics/jsto...#readme",
"devDependencies": {
"@babel/cli": "7.14.5",
"@babel/core": "7.14.6",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.14.5",
"@babel/register": "7.14.5",
"@commitlint/cli": "12.0.1",
"@commitlint/config-conventional": "12.0.1",
"@types/mocha": "8.2.2",
"mocha": "9.0.1",
"babel-eslint": "10.1.0",
"babel-plugin-istanbul": "6.0.0",
"babel-preset-minify": "0.5.1",
"babelrc-rollup": "3.0.0",
"chai": "4.3.4",
"cross-env": "7.0.3",
"eslint": "7.23.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.23.1",
"husky": "5.2.0",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-babel-minify": "10.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-copy": "3.4.0",
"semantic-release": "17.4.2",
"rollup-plugin-commonjs": "10.1.0"
},
"dependencies": {
"acorn": "8.4.0"
}
}