-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.59 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.59 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
{
"name": "topiarist",
"version": "0.1.4",
"author": "kybernetikos <kybernetikos@gmail.com>",
"description": "Topiarist provides tree and shape-based type verification for JavaScript.",
"main": "src/topiarist.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BladeRunnerJS/topiarist.git"
},
"keywords": [
"extend",
"inheritance",
"OO",
"mixin",
"interface"
],
"scripts": {
"prepublish": "mkdirp dist && browserify src/topiarist.js -s topiarist -o dist/topiarist.js",
"postpublish": "publish-release --assets dist/topiarist.js --notes 'Add release notes here.'",
"pretest": "npm run pretest:lint",
"pretest:lint": "eslint src test",
"test": "npm run test:node && npm run test:browser && npm run test:saucelabs",
"test:node": "mocha test",
"test:node:debug": "mocha test -w",
"test:browser": "karma start",
"test:browser:debug": "karma start karma-debug.conf.js",
"test:saucelabs": "envcheck SAUCE_ACCESS_KEY && karma start karma-saucelabs.conf.js",
"test:performance": "node test-performance.js"
},
"devDependencies": {
"browserify": "^11.0.1",
"core-js": "^1.0.1",
"env-check": "^0.0.1",
"eslint": "^0.24.1",
"expectations": "^0.5.1",
"karma": "^0.13.6",
"karma-browserify": "^4.2.1",
"karma-chrome-launcher": "^0.2.0",
"karma-cli": "^0.1.0",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-sauce-launcher": "^0.2.14",
"mkdirp": "^0.5.1",
"mocha": "^2.2.5",
"publish-release": "^1.0.2",
"sinon": "^1.15.4"
}
}