-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.33 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.33 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
{
"name": "rollup-plugin-rust",
"version": "1.2.0",
"description": "A rollup plugin that that compile Rust code into WebAssembly modules",
"main": "dist/index.js",
"typings": "index.d.ts",
"scripts": {
"build": "rollup -c",
"dev": "flow && rollup -c -w || true",
"lint": "flow && eslint --cache src test flow-typed/*.js || true",
"lint:fix": "eslint --fix src test flow-typed/*.js",
"lint:commits": "commitlint --to=$(git rev-parse HEAD)",
"release": "standard-version --skip.commit --skip.tag",
"release:as": "standard-version --skip.commit --skip.tag --release-as",
"release:ok": "standard-version --sign --commit-all --skip.bump --skip.changelog",
"release:validate": "commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)",
"ci:lint": "flow && eslint --cache src test flow-typed/*.js",
"ci:test": "jest --runInBand --silent --ci",
"ci:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage --runInBand --silent --ci",
"ci:release": "conventional-github-releaser -p angular",
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
"prepare": "flow-typed install jest && flow-typed install --ignoreDeps dev && npm run lint:fix",
"prepublishOnly": "npm run build"
},
"files": ["dist/", "flow-typed/*", "index.d.ts"],
"engines": {
"node": ">= 8.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DrSensor/rollup-plugin-rust.git"
},
"keywords": ["rollup-plugin", "rust", "webassembly"],
"author": "Fahmi Akbar Wildana",
"license": "MIT",
"bugs": {
"url": "https://github.com/DrSensor/rollup-plugin-rust/issues"
},
"homepage": "https://github.com/DrSensor/rollup-plugin-rust#readme",
"devDependencies": {
"@babel/core": "^7.0.0-rc.1",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0-rc.1",
"@babel/preset-env": "^7.0.0-rc.1",
"@babel/preset-flow": "^7.0.0-rc.1",
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"conventional-github-releaser": "^3.1.2",
"eslint": "^5.4.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.21.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^4.0.0",
"flow-bin": "^0.79.1",
"flow-typed": "^2.5.1",
"husky": "^1.0.0-rc.13",
"jest": "^23.5.0",
"jest-runner-eslint": "^0.6.0",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2",
"pretty-quick": "^1.6.0",
"rollup": "^0.64.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.0.0-beta.8",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-prettier": "^0.4.0",
"rust-native-wasm-loader": "^0.8.1",
"standard-version": "^4.4.0",
"webassembly-loader": "^1.1.0"
},
"lint-staged": {
"*.js": ["flow focus-check", "eslint"]
},
"standard-version": {
"scripts": {
"postbump": "prettier package*.json --write",
"precommit": "git add CHANGELOG.md package*.json"
}
},
"dependencies": {
"rollup-pluginutils": "^2.3.1"
}
}