-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 760 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 760 Bytes
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
{
"name": "website-spec",
"version": "1.1.0",
"description": "A domain specific language (DSL) for functional/E2E web testing.",
"main": "index.js",
"scripts": {
"test": "node tests/index.js",
"build": "nearleyc ./grammar/grammar.ne -o ./build/grammar.js",
"postbuild": "node grammar/postbuild.js && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bumbu/website-spec.git"
},
"keywords": [
"dsl",
"spec",
"testing"
],
"author": "Alex Bumbu",
"license": "MIT",
"bugs": {
"url": "https://github.com/bumbu/website-spec/issues"
},
"homepage": "https://github.com/bumbu/website-spec#readme",
"devDependencies": {
"deep-equal": "^1.0.1",
"nearley": "^2.7.7"
}
}